0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-08 23:35:05 +00:00
uxn/examples/devconsole.usm

31 lines
631 B
Text
Raw Normal View History

2021-02-20 23:00:34 +00:00
( hello world )
:dev/w fff9 ( const write port )
;x 2 ;y 2 ;color 1
|0100 @RESET
( set dev/write to console )
#00 =dev/w
( print to console )
,text ,displaycli JSR
BRK
@displaycli
2021-02-22 00:52:51 +00:00
2021-02-20 23:00:34 +00:00
@cliloop
DUP2 LDR IOW ( write pointer value to console )
#0001 ADD2 ( increment string pointer )
DUP2 LDR #00 NEQ ,cliloop ROT JMP? POP2 ( while *ptr!=0 goto loop )
2021-02-22 00:52:51 +00:00
2021-02-20 23:00:34 +00:00
RTS
@text " Hello World " ( add characters to memory )
|c000 @FRAME
|d000 @ERROR
|FFF0 [ f3f0 f30b f30a ] ( palette )
|FFFA .RESET .FRAME .ERROR