mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-04 13:38:39 +11:00
Reworked one use of addHL
By essentially inlining both addHL and cpHLDE, 100 cycles are saved, but due to the registers not needing preserving, a byte is saved too.
This commit is contained in:
parent
e1c7269809
commit
9803b458f6
@ -110,12 +110,14 @@ symRegister:
|
||||
; Is our new name going to make us go out of bounds?
|
||||
push hl ; --> lvl 2
|
||||
push de ; --> lvl 3
|
||||
ld d, 0
|
||||
ld e, c
|
||||
add hl, de ; if carry set here, sbc will carry too
|
||||
ld e, (ix+2) ; DE --> pointer to record list, which is also
|
||||
ld d, (ix+3) ; the end of names pool
|
||||
; DE --> names end
|
||||
ld a, c
|
||||
call addHL
|
||||
call cpHLDE
|
||||
|
||||
sbc hl, de ; compares hl and de destructively
|
||||
pop de ; <-- lvl 3
|
||||
pop hl ; <-- lvl 2
|
||||
jr nc, .outOfMemory ; HL >= DE
|
||||
|
Loading…
Reference in New Issue
Block a user