I have been away from the scene for some time and returned programming again.
To speed up coding I am looking for an assembler with possibility to create pseudo mnemonics.
I do not know if they exist, I am not aware of this feature in assemblers. I am sure they must exist.
What I mean by creating pseudo mnemonics is for example:
ADD HL,&H2000
which will result after compiling in (for example, you can edit yourself, how to compile)
PUSH DE
LD DE,&h2000
ADD HL,DE
POP DE
Similar for ADC Hl,&Hxxxx
or
OUT (&H99),128,14+128
in
ld a,128
out (&h99),A
ld a,14+128
out (&h99),a
Similar with using registers instead of numbers.
Ruining register values is your own responsibility.
Does it exist? (incl. saving with pseudo mnemonics and substituted mnemonics)
Login or register to post comments