1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-19 07:58:45 +10:00
collapseos/blk/442

14 lines
227 B
Plaintext
Raw Normal View History

: EMIT
( 0x53==EMITPTR 0x55==override )
85 RAM+ @ DUP NOT IF DROP 83 RAM+ @ THEN EXECUTE ;
2020-04-26 11:54:07 +10:00
: (print)
BEGIN
C@+ ( a+1 c )
( exit if null )
DUP NOT IF 2DROP EXIT THEN
EMIT ( a )
AGAIN
;