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
3e8db3dffa
commit
f01ef676b0
@ -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.
|
||||
; ld must be done little endian, so least significant byte first.
|
||||
intoHL:
|
||||
push de
|
||||
ld e, (hl)
|
||||
inc hl
|
||||
ld d, (hl)
|
||||
ex de, hl
|
||||
pop de
|
||||
push de
|
||||
ld e, (hl)
|
||||
inc hl
|
||||
ld d, (hl)
|
||||
ex de, hl
|
||||
pop de
|
||||
ret
|
||||
|
||||
intoDE:
|
||||
ex de, hl
|
||||
call intoHL
|
||||
ex de, hl ; de preserved by intoHL, so no push/pop needed
|
||||
ex de, hl
|
||||
call intoHL
|
||||
ex de, hl ; de preserved by intoHL, so no push/pop needed
|
||||
ret
|
||||
|
||||
intoIX:
|
||||
push ix
|
||||
ex (sp), hl ;swap hl with ix, on the stack
|
||||
call intoHL
|
||||
ex (sp), hl ;restore hl from stack
|
||||
pop ix
|
||||
push ix
|
||||
ex (sp), hl ;swap hl with ix, on the stack
|
||||
call intoHL
|
||||
ex (sp), hl ;restore hl from stack
|
||||
pop ix
|
||||
ret
|
||||
|
||||
; add the value of A into HL
|
||||
|
Loading…
Reference in New Issue
Block a user