mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 06:38:40 +11:00
Fixed tabs and spacing, and made a comment clearer.
This commit is contained in:
parent
9364ffed6d
commit
cf69ca21bf
@ -110,9 +110,9 @@ symRegister:
|
|||||||
; Is our new name going to make us go out of bounds?
|
; Is our new name going to make us go out of bounds?
|
||||||
push hl ; --> lvl 2
|
push hl ; --> lvl 2
|
||||||
push de ; --> lvl 3
|
push de ; --> lvl 3
|
||||||
ld d, 0
|
ld d, 0
|
||||||
ld e, c
|
ld e, c
|
||||||
add hl, de ; if carry set here, sbc will carry too
|
add hl, de ; if carry set here, sbc will carry too
|
||||||
ld e, (ix+2) ; DE --> pointer to record list, which is also
|
ld e, (ix+2) ; DE --> pointer to record list, which is also
|
||||||
ld d, (ix+3) ; the end of names pool
|
ld d, (ix+3) ; the end of names pool
|
||||||
; DE --> names end
|
; DE --> names end
|
||||||
@ -193,13 +193,13 @@ _symFind:
|
|||||||
.skip:
|
.skip:
|
||||||
; ok, next!
|
; ok, next!
|
||||||
|
|
||||||
push de
|
push de
|
||||||
ld de, 0x0003
|
ld de, 0x0003
|
||||||
add iy, de
|
add iy, de ; faster and shorter than three inc's
|
||||||
; offset is signed, but '-' isn't supported by zasm
|
; offset is signed, but '-' isn't supported by zasm
|
||||||
ld e, (iy+0xFD) ; offset is also compulsory, so no extra bytes used
|
ld e, (iy+0xFD) ; offset is also compulsory, so no extra bytes used
|
||||||
add hl, de ; advance HL by (iy) characters
|
add hl, de ; advance HL by (iy-3) characters
|
||||||
pop de
|
pop de
|
||||||
|
|
||||||
djnz .loop
|
djnz .loop
|
||||||
; end of the chain, nothing found
|
; end of the chain, nothing found
|
||||||
|
Loading…
Reference in New Issue
Block a user