1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-06 12:48:46 +10:00
collapseos/blk/330
2020-04-22 21:19:12 -04:00

17 lines
264 B
Plaintext

CODE _find ( cur w -- a f )
HL POPqq, ( w )
DE POPqq, ( cur )
chkPS,
( 3 == find )
3 CALLnn,
IFNZ,
( not found )
HL PUSHqq,
PUSH0,
JPNEXT,
THEN,
( found )
DE PUSHqq,
PUSH1,
;CODE