Search found 9 matches
- Tue Feb 09, 2021 5:12 pm
- Forum:
- Topic: 2 Beginner questions about assembly programming using CC65
- Replies: 16
- Views: 7040
2 Beginner questions about assembly programming using CC65
Finally, I figured it all out. Thanks guys for your help. Assembling library method into separate object files and using ar65 to put them into lib files does exactly what I'm aiming for: only assembling the code that I actually use in my main program. I also realized what I was doing wrong with the...
- Sun Feb 07, 2021 3:32 pm
- Forum:
- Topic: 2 Beginner questions about assembly programming using CC65
- Replies: 16
- Views: 7040
2 Beginner questions about assembly programming using CC65
<blockquote class="ipsQuote" data-ipsquote="" data-ipsquote-contentapp="forums" data-ipsquote-contentclass="forums_Topic" data-ipsquote-contentcommentid="7216" data-ipsquote-contentid="1004" data-ipsquote-contenttype="forums" data-ipsquote-timestamp="1612711734" data-ipsquote-userid="833" data-ipsqu...
- Sun Feb 07, 2021 11:13 am
- Forum:
- Topic: 2 Beginner questions about assembly programming using CC65
- Replies: 16
- Views: 7040
2 Beginner questions about assembly programming using CC65
That's a bummer, but yes I expect that's actually what's happening here.
Did you bother to solve this in your demo, or did you just include your entire graphics library?
- Sat Feb 06, 2021 4:21 pm
- Forum:
- Topic: 2 Beginner questions about assembly programming using CC65
- Replies: 16
- Views: 7040
2 Beginner questions about assembly programming using CC65
Indeed, that's what the documentation says. So I've already tried including vera.inc at the end of my main program's asm file. Still, it gives the same error. I also tried switching vera.o and program.asm in the call to cl65, but that didn't help either.
- Sat Feb 06, 2021 1:56 pm
- Forum:
- Topic: 2 Beginner questions about assembly programming using CC65
- Replies: 16
- Views: 7040
2 Beginner questions about assembly programming using CC65
I'm trying to create an object file containing VERA-related subroutines, but I can't get it working. I've got vera.inc, which contains (among other things):<br /> .global clearScreen I have vera.asm:<br /> .include "vera.inc"<br /> ... .ifref clearScreen<br /> .proc clearScreen<br /> ...<br /> .end...
- Thu Feb 04, 2021 8:44 pm
- Forum:
- Topic: 2 Beginner questions about assembly programming using CC65
- Replies: 16
- Views: 7040
2 Beginner questions about assembly programming using CC65
Ah right my wording was a bit too simplistic.
Thanks for your answer. With this knowledge I can begin restructuring and tidying up the littte game I'm trying to put together.
- Thu Feb 04, 2021 6:09 pm
- Forum:
- Topic: 2 Beginner questions about assembly programming using CC65
- Replies: 16
- Views: 7040
2 Beginner questions about assembly programming using CC65
Hello Stephen, thanks for your answer. Let me check if I understand this correctly.<br /> * You put all global symbols from math.asm in a separate math.inc file, and you include that file (with .include) in math.asm<br /> * Assembling math.asm yields math.o, which contains the ML code + the used sy...
- Wed Feb 03, 2021 9:21 pm
- Forum:
- Topic: 2 Beginner questions about assembly programming using CC65
- Replies: 16
- Views: 7040
2 Beginner questions about assembly programming using CC65
Hi Elektron72, Thanks for your very quick reply! <blockquote class="ipsQuote" data-ipsquote=""> <div class="ipsQuote_citation"> Quote </div> <div class="ipsQuote_contents"> A lot of the stuff in the cc65 configuration files isn't necessary for assembly. While this extra section might enable some ad...
- Wed Feb 03, 2021 7:32 pm
- Forum:
- Topic: 2 Beginner questions about assembly programming using CC65
- Replies: 16
- Views: 7040
2 Beginner questions about assembly programming using CC65
Hello! During the last couple of days I've been converting a CBM prg Studio ML project (target: Commodore 64) to CX16. I'm using the cc65 suite to assemble my code.<br /> At this moment there are 2 things about cc65 that I don't really understand. <u>1) The CONDES section in cx16-asm.cfg</u><br /> ...