mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 22:30:54 +11:00
0f2d14ad8a
This allows us to remove a lot of labels usage in boot code. This commit has no effect on forth.bin.
15 lines
272 B
Plaintext
15 lines
272 B
Plaintext
CODE S=
|
|
DE POPqq,
|
|
HL POPqq,
|
|
chkPS,
|
|
BEGIN,
|
|
LDA(DE),
|
|
(HL) CPr,
|
|
JRNZ, BREAK, ( not equal? break early. NZ is set. )
|
|
A ORr, ( if our char is null, stop )
|
|
HL INCss,
|
|
DE INCss,
|
|
JRNZ, AGAIN,
|
|
PUSHZ,
|
|
;CODE
|