mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 01:30:55 +11:00
b1a95648f1
This marks the end of wordrefs in stable ABI. Nice.
16 lines
391 B
Plaintext
16 lines
391 B
Plaintext
: X:
|
|
(xentry) 1 ( compiled ) C,
|
|
BEGIN
|
|
WORD DUP LIT" ;" S= IF
|
|
DROP LIT" EXIT" XFIND , EXIT THEN
|
|
XCURRENT @ SWAP ( xcur w ) _find ( a f )
|
|
IF ( a )
|
|
DUP IMMED? IF ABORT THEN
|
|
_xapply ,
|
|
ELSE ( w )
|
|
0x02 RAM+ @ SWAP ( cur w ) _find ( a f )
|
|
IF DUP IMMED? NOT IF ABORT THEN EXECUTE
|
|
ELSE (parse) XLITN THEN
|
|
THEN
|
|
AGAIN ;
|