1
0
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:
Clanmaster21 2019-10-17 08:47:09 +01:00 committed by GitHub
parent f8ebe17eba
commit 9364ffed6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: