mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-12 17:25:05 +00:00
29 lines
No EOL
613 B
Text
29 lines
No EOL
613 B
Text
( hello world )
|
|
|
|
&Console { pad 8 stdio 1 }
|
|
|
|
|0100 @RESET
|
|
|
|
,text1 ,print-label JSR ( print to console )
|
|
|
|
BRK
|
|
|
|
@print-label ( text )
|
|
|
|
@cliloop
|
|
DUP2 LDR =dev/console.stdio ( write pointer value to console )
|
|
#0001 ADD2 ( increment string pointer )
|
|
DUP2 LDR #00 NEQ ,cliloop ROT JMP? POP2 ( while *ptr!=0 goto loop )
|
|
POP2
|
|
|
|
RTS
|
|
|
|
@text1 [ Hello World ] <1 .00 ( add text to memory, return 1 byte, add null byte )
|
|
|
|
|c000 @FRAME
|
|
|d000 @ERROR
|
|
|
|
|FF00 ;dev/console Console
|
|
|
|
|FFF0 .RESET .FRAME .ERROR ( vectors )
|
|
|FFF8 [ f3f0 f30b f30a ] ( palette ) |