Out of date tools?

Are you new to 6502, NES, or even programming in general? Post any of your questions here. Remember - the only dumb question is the question that remains unasked.

Moderator: Moderators

User avatar
AlterAnubis
Posts: 19
Joined: Wed Mar 29, 2017 3:11 pm

Re: Out of date tools?

Post by AlterAnubis »

FrankenGraphics wrote:the first paragraph is for using asm6. Place it in your folder containing asm6 and your asm file. Run it from there.

the rest is for error handling specific to ca65 (and not a complete batch file for baking a program with ca65). They shouldn't be written together.
Thank you I got it fixed and it worked. Same with putting code into the .asm file that acctually works
User avatar
FrankenGraphics
Formerly WheelInventor
Posts: 2064
Joined: Thu Apr 14, 2016 2:55 am
Location: Gothenburg, Sweden
Contact:

Re: Out of date tools?

Post by FrankenGraphics »

Cool, congratulations! That's all there is to setting up asm6.


in cc65/ca65, should you wish to switch, it's a little more complicated. Code is expected to be organized in a number of so called object files (pieces of code or data, could for example be organized in banks or smaller chunks), which another program called a linker (in this case ld65) will stitch together into one cohesive binary. the cc65 suite gives you more control over how the code is written and assembled, but at the price of a fiddlier setup.
Post Reply