1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-20 14:18:26 +10:00
collapseos/blk/322
Virgil Dupras 7359717000 z80: add missing chkPS, calls
chkPS, used to be only for words that pushed back to PS, but I've
recently removed underflow checks from next and I forgot to add
missing chkPS, calls that go with this change.
2020-08-23 08:43:51 -04:00

14 lines
179 B
Plaintext

CODE !
HL POP, DE POP, chkPS,
(HL) E LDrr,
HL INCd,
(HL) D LDrr,
;CODE
CODE @
HL POP, chkPS,
E (HL) LDrr,
HL INCd,
D (HL) LDrr,
DE PUSH,
;CODE