kip/x/hello.x20

21 lines
483 B
Plaintext

-inc "x/inc/dev.x20"
-inc "x/inc/a.x20"
-org #0100
:entry
pw #00100010 pw @data/hello-world pw @g/puts $ss ca
pw #00100020 pw @data/symbs-ascii $~ss ca
pw #00100030 pw @data/symbs-other ~ss ca
ex
;
:s0 -inc "x/lib/s0.x20 " ;
:g -inc "x/lib/graphics.x20" ;
:data
:hello-world "hello, world!!" #00 ;
:symbs-ascii "`~!@#$%^&*()-+_={}[];:',<.>/?" #00 ;
:symbs-other #01020304 #05060708 #090a0b0c #0d0e0f10
#11121314 #15161719 #191a1b1c #1d1e1f00 ;
;