0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-30 09:43:02 +00:00
uxn/projects/examples/devices/console.usm
2021-05-13 09:02:32 +01:00

27 lines
No EOL
293 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 ,&loop JCN
POP2
RTN
@hello-word "hello 20 "World!