uxn/projects/examples/dev.console.usm

38 lines
549 B
Plaintext
Raw Normal View History

2021-02-20 18:00:34 -05:00
( hello world )
2021-03-16 00:29:44 -04:00
%RTN { JMP2r }
2021-03-21 17:16:19 -04:00
( devices )
|0100 ;Console { pad 8 char 1 byte 1 short 2 }
|01F0 .RESET .FRAME .ERROR ( vectors )
|01F8 [ 13fd 1ef3 1bf2 ] ( palette )
( program )
|0200 @RESET
2021-02-20 18:00:34 -05:00
2021-03-11 18:47:28 -05:00
,text1 ,print-label JSR2
,text2 ,print-label JSR2
2021-03-13 20:34:08 -05:00
#ab =Console.byte
#cdef =Console.short
2021-02-20 18:00:34 -05:00
BRK
@print-label ( text )
2021-03-11 15:19:59 -05:00
2021-03-11 18:47:28 -05:00
$loop NOP
2021-03-13 20:34:08 -05:00
( send ) DUP2 LDR =Console.char
2021-03-11 15:19:59 -05:00
( incr ) #0001 ADD2
2021-03-15 21:08:41 -04:00
( loop ) DUP2 LDR #00 NEQ ^$loop MUL JMP
POP2
2021-03-01 11:55:16 -05:00
2021-03-14 17:26:17 -04:00
RTN
2021-02-20 18:00:34 -05:00
2021-03-11 17:00:32 -05:00
@text1 [ Welcome 20 to 20 UxnVM 0a00 ]
@text2 [ Hello 20 World 0a00 ]
2021-02-20 18:00:34 -05:00
|c000 @FRAME
|d000 @ERROR