1
0
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:
Clanmaster21 2019-10-17 07:15:08 +01:00 committed by GitHub
parent 8b174acd0e
commit e1c7269809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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