1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-29 05:20:55 +10:00

boot: remove spurious label usage

This commit is contained in:
Virgil Dupras 2020-05-16 19:47:34 -04:00
parent ee3407bf1c
commit fd597d29d2

30
blk/293
View File

@ -1,16 +1,16 @@
JRNZ, L2 FWR ( loopend ) IFZ,
( match, let's compare the string then ) ( match, let's compare the string then )
DE DECss, ( Skip prev field. One less because we ) DE DECss, ( Skip prev field. One less because we )
DE DECss, ( pre-decrement ) DE DECss, ( pre-decrement )
B C LDrr, ( loop C times ) B C LDrr, ( loop C times )
BEGIN, ( loop ) BEGIN,
( pre-decrement for easier Z matching ) ( pre-decrement for easier Z matching )
DE DECss, DE DECss,
HL DECss, HL DECss,
LDA(DE), LDA(DE),
(HL) CPr, (HL) CPr,
JRNZ, L3 FWR ( loopend ) JRNZ, L2 FWR ( loopend )
DJNZ, AGAIN, ( loop ) DJNZ, AGAIN,
L2 FSET L3 FSET ( loopend ) L2 FSET ( loopend )
THEN,
( cont. ) ( cont. )