mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 03:30:55 +11:00
3d2dc041fb
Instead of having wordref point to core word routines, I made them into word 4 word types. It liberates space into the stable ABI and should make porting to other arches easier. I'm also thinking of combining word type with the namelen field for precious bytes saving, but not now...
17 lines
530 B
Plaintext
17 lines
530 B
Plaintext
CODE (?br) ( 0x67 )
|
|
HL POPqq,
|
|
HLZ,
|
|
JRZ, L2 BWR ( br + 1. False, branch )
|
|
L1 BSET ( loop will jump here )
|
|
( True, skip next 2 bytes and don't branch )
|
|
IY INCss, IY INCss,
|
|
JPNEXT, NOP, NOP, NOP,
|
|
CODE (loop) ( 0x80 )
|
|
0 IX+ INC(IXY+), IFZ, 1 IX+ INC(IXY+), THEN, ( I++ )
|
|
( Jump if I <> I' )
|
|
A 0 IX+ LDrIXY, 2 IX- CP(IXY+), JRNZ, L2 BWR ( branch )
|
|
A 1 IX+ LDrIXY, 1 IX- CP(IXY+), JRNZ, L2 BWR ( branch )
|
|
( don't branch )
|
|
IX DECss, IX DECss, IX DECss, IX DECss, JR, L1 BWR
|
|
|