From cf69ca21bfac8f240b9012e81a3e7c57d4a3ab56 Mon Sep 17 00:00:00 2001 From: Clanmaster21 Date: Thu, 17 Oct 2019 08:51:02 +0100 Subject: [PATCH] Fixed tabs and spacing, and made a comment clearer. --- apps/zasm/symbol.asm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/zasm/symbol.asm b/apps/zasm/symbol.asm index da673bb..cc16307 100644 --- a/apps/zasm/symbol.asm +++ b/apps/zasm/symbol.asm @@ -110,9 +110,9 @@ 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 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 @@ -193,13 +193,13 @@ _symFind: .skip: ; ok, next! - push de - ld de, 0x0003 - add iy, de + push de + ld de, 0x0003 + add iy, de ; faster and shorter than three inc's ; 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 + ld e, (iy+0xFD) ; offset is also compulsory, so no extra bytes used + add hl, de ; advance HL by (iy-3) characters + pop de djnz .loop ; end of the chain, nothing found