mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 06:38:40 +11:00
Update core.asm
This commit is contained in:
parent
8b174acd0e
commit
e1c7269809
@ -52,7 +52,8 @@ intoIX:
|
|||||||
pop ix
|
pop ix
|
||||||
ret
|
ret
|
||||||
|
|
||||||
; add the value of A into HL, affecting flags like an ordinary addition
|
; add the value of A into HL
|
||||||
|
; affecting carry flag according to the 16-bit addition, Z, S and P untouched.
|
||||||
addHL:
|
addHL:
|
||||||
push de
|
push de
|
||||||
ld d, 0
|
ld d, 0
|
||||||
@ -62,7 +63,8 @@ addHL:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
|
|
||||||
; subtract the value of A from HL, affecting flags like an ordinary subtraction
|
; subtract the value of A from HL
|
||||||
|
; affects flags according to the 16-bit subtraction.
|
||||||
subHL:
|
subHL:
|
||||||
push de
|
push de
|
||||||
ld d, 0
|
ld d, 0
|
||||||
|
Loading…
Reference in New Issue
Block a user