Big Memory Model assembler?

Programming the 6502 microprocessor and its relatives in assembly and other languages.
User avatar
BigEd
Posts: 11463
Joined: 11 Dec 2008
Location: England
Contact:

Re: Big Memory Model assembler?

Post by BigEd »

Excellent!
potatohead
Posts: 27
Joined: 26 Feb 2013

Re: Big Memory Model assembler?

Post by potatohead »

Adam, thanks for those. They are a big help!
TMorita
Posts: 217
Joined: 15 Sep 2002

Re: Big Memory Model assembler?

Post by TMorita »

If I remember correctly, I wrote FASM to support 24-bit addresses.

Like most assemblers, it uses #< and #> for the low 8-bits of an address and the high 8-bits of an address, and #^ for the bank (upper 8-bits of a 24-bit address).

It uses the S28 S-record format, so it can output the final data correctly.

Toshi
Post Reply