0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-27 16:23:02 +00:00
uxn/projects/examples/dev.console.usm

28 lines
310 B
Text
Raw Normal View History

2021-04-21 16:09:18 +00:00
( dev/console )
2021-02-20 23:00:34 +00:00
2021-03-16 04:29:44 +00:00
%RTN { JMP2r }
( devices )
|10 @Console [ &pad $8 &char $1 ]
2021-04-21 16:48:04 +00:00
( init )
2021-04-21 16:48:04 +00:00
|0100 ( -> )
2021-02-20 23:00:34 +00:00
2021-04-20 18:32:26 +00:00
;hello-word ;print JSR2
2021-02-20 23:00:34 +00:00
BRK
2021-04-20 18:32:26 +00:00
@print ( addr -- )
2021-03-11 20:19:59 +00:00
2021-04-20 18:32:26 +00:00
&loop
( send ) DUP2 GET .Console/char DEO
2021-03-11 20:19:59 +00:00
( incr ) #0001 ADD2
2021-04-21 17:23:58 +00:00
( loop ) DUP2 GET #00 NEQ ,&loop JNZ
POP2
2021-03-01 16:55:16 +00:00
2021-04-20 18:32:26 +00:00
RTN
2021-02-20 23:00:34 +00:00
@hello-word "hello 20 "World!