mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 06:48:39 +11:00
Update core.asm
This commit is contained in:
parent
8b174acd0e
commit
e1c7269809
@ -52,7 +52,8 @@ intoIX:
|
||||
pop ix
|
||||
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:
|
||||
push de
|
||||
ld d, 0
|
||||
@ -62,7 +63,8 @@ addHL:
|
||||
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:
|
||||
push de
|
||||
ld d, 0
|
||||
|
Loading…
Reference in New Issue
Block a user