1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-23 22:10:19 +10:00
collapseos/blk/312
Virgil Dupras 440ea43a88 z80a: make mnemonic names more uniform across assemblers
Initially, I used the same letters as those used in the z80 ref
docs, but it makes the different assemblers harder to use than they
should. Having consistent "argtype" rules across assemblers should
help.
2020-06-27 22:01:56 -04:00

11 lines
171 B
Plaintext

CODE 2DROP ( a b -- )
HL POP, HL POP,
;CODE
CODE 2DUP ( a b -- a b a b )
HL POP, ( b ) DE POP, ( a )
chkPS,
DE PUSH, HL PUSH,
DE PUSH, HL PUSH,
;CODE