0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-16 11:15:06 +00:00
uxn/projects/examples/devices/console.usm
2021-05-12 18:28:45 -07:00

27 lines
No EOL
301 B
Text

( dev/console )
%RTN { JMP2r }
( devices )
|10 @Console [ &pad $8 &char $1 ]
( init )
|0100 ( -> )
,hello-word ,print JSR
BRK
@print ( addr* -- )
&loop
( send ) LDAk .Console/char DEO
( incr ) #0001 ADD2
( loop ) LDAk #00 NEQ ,&loop JCN
POP2
RTN
@hello-word "hello 20 "World!