mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 08:58: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.
|
jr z, .end ; match! Z already set, IY and HL placed.
|
||||||
.skip:
|
.skip:
|
||||||
; ok, next!
|
; ok, next!
|
||||||
ld a, (iy) ; name len again
|
|
||||||
call addHL ; advance HL by A chars
|
push de
|
||||||
inc iy \ inc iy \ inc iy
|
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
|
djnz .loop
|
||||||
; end of the chain, nothing found
|
; end of the chain, nothing found
|
||||||
.nothing:
|
.nothing:
|
||||||
|
Loading…
Reference in New Issue
Block a user