- project files
- 68020+ code
BUT... has anyone ever used the ORG directive?
I need to write code located at $FA0000 (cartridge port) so I put an
Code: Select all
ORG $FA0000
at the beginning. What happens is that PureLinker runs amok! For about 200 lines of code it generates a 16MB .o file and then quits with out-of-memory error. If I remove the ORG directive it links fine. Anyone else encountered this issue?
Is there an assembler providing 68020+ mnemonics and has a makefile system around? I know that Devpac can generate 68020+ code but does it come with multiple-file project capability? I tries Turboassembler but it doesn't support what I want.
I want to avoid stuffing all code in a single file.
Thanks, Arne