mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-03 18:48:39 +11:00
Optimised intoXX functions
Rewrote intoXX functions to mainly rely on intoHL, as the HL instructions are smaller and faster. Also removed some redundant push and pop instructions. I edited the given unit tests to test these, and they seem to work as expected.
This commit is contained in:
parent
83b314c450
commit
5f02f07c76
@ -12,7 +12,6 @@
|
||||
; *** DATA ***
|
||||
; Useful data to point to, when a pointer is needed.
|
||||
P_NULL: .db 0
|
||||
|
||||
; *** REGISTER FIDDLING ***
|
||||
|
||||
; add the value of A into DE
|
||||
@ -27,34 +26,28 @@ addDE:
|
||||
noop: ; piggy backing on the first "ret" we have
|
||||
ret
|
||||
|
||||
; copy (DE) into DE, little endian style (addresses in z80 are always have
|
||||
; their LSB before their MSB)
|
||||
intoDE:
|
||||
push af
|
||||
ld a, (de)
|
||||
inc de
|
||||
ex af, af'
|
||||
ld a, (de)
|
||||
ld d, a
|
||||
ex af, af'
|
||||
ld e, a
|
||||
pop af
|
||||
; copy (HL) into HL, utilising the optimised HL instructions. The first ld
|
||||
; edits the address of the second ld to now be HL.
|
||||
intoHL:
|
||||
ld (.load+1), hl
|
||||
.load:
|
||||
ld hl, (.load) ; (.load) is just a placeholder so the
|
||||
; assembler will assemble the correct opcode
|
||||
ret
|
||||
|
||||
intoHL:
|
||||
push de
|
||||
ex de, hl
|
||||
call intoDE
|
||||
ex de, hl
|
||||
pop de
|
||||
intoDE:
|
||||
ex de, hl
|
||||
call intoHL
|
||||
ex de, hl ; de not affected by intoHL, so no push/pop
|
||||
; is necessary
|
||||
ret
|
||||
|
||||
intoIX:
|
||||
push de
|
||||
push ix \ pop de
|
||||
call intoDE
|
||||
push de \ pop ix
|
||||
pop de
|
||||
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