0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-08 15:25:05 +00:00
uxn/projects/examples/dev.console.usm
2021-04-06 10:45:53 -07:00

31 lines
438 B
Text

( Dev/Console )
%RTN { JMP2r }
( devices )
|0110 ;Console { vector 2 pad 6 char 1 byte 1 short 2 }
( program )
|0200
,text1 ,print-label JSR2
,text2 ,print-label JSR2
#ab =Console.byte
#cdef =Console.short
BRK
@print-label ( text )
$loop
( send ) DUP2 PEK2 =Console.char
( incr ) #0001 ADD2
( loop ) DUP2 PEK2 #00 NEQ ^$loop JNZ
POP2
RTN
@text1 [ Welcome 20 to 20 UxnVM 0a00 ]
@text2 [ Hello 20 World 0a00 ]