1
0
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:
Clanmaster21 2019-10-10 19:26:03 +01:00 committed by GitHub
parent 3e8db3dffa
commit f01ef676b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,26 +29,26 @@ noop: ; piggy backing on the first "ret" we have
; copy (HL) into DE, then exchange the two, utilising the optimised HL instructions. ; copy (HL) into DE, then exchange the two, utilising the optimised HL instructions.
; ld must be done little endian, so least significant byte first. ; ld must be done little endian, so least significant byte first.
intoHL: intoHL:
push de push de
ld e, (hl) ld e, (hl)
inc hl inc hl
ld d, (hl) ld d, (hl)
ex de, hl ex de, hl
pop de pop de
ret ret
intoDE: intoDE:
ex de, hl ex de, hl
call intoHL call intoHL
ex de, hl ; de preserved by intoHL, so no push/pop needed ex de, hl ; de preserved by intoHL, so no push/pop needed
ret ret
intoIX: intoIX:
push ix push ix
ex (sp), hl ;swap hl with ix, on the stack ex (sp), hl ;swap hl with ix, on the stack
call intoHL call intoHL
ex (sp), hl ;restore hl from stack ex (sp), hl ;restore hl from stack
pop ix pop ix
ret ret
; add the value of A into HL ; add the value of A into HL