mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-04 13:38:39 +11:00
Reworked second use of addHL
43 cycles saved, and no more addHL in critical loops. No bytes saved or used.
This commit is contained in:
parent
f8ebe17eba
commit
9364ffed6d
@ -192,9 +192,15 @@ _symFind:
|
||||
jr z, .end ; match! Z already set, IY and HL placed.
|
||||
.skip:
|
||||
; ok, next!
|
||||
ld a, (iy) ; name len again
|
||||
call addHL ; advance HL by A chars
|
||||
inc iy \ inc iy \ inc iy
|
||||
|
||||
push de
|
||||
ld de, 0x0003
|
||||
add iy, de
|
||||
; offset is signed, but '-' isn't supported by zasm
|
||||
ld e, (iy+0xFD) ; offset is also compulsory, so no extra bytes used
|
||||
add hl, de ; advance HL by (iy) characters
|
||||
pop de
|
||||
|
||||
djnz .loop
|
||||
; end of the chain, nothing found
|
||||
.nothing:
|
||||
|
Loading…
Reference in New Issue
Block a user