prog8/examples/test.p8

45 lines
677 B
Plaintext
Raw Normal View History

%import c64utils
2019-01-12 17:11:36 +00:00
%import c64flt
2019-01-02 22:32:41 +00:00
~ main {
2019-01-01 20:47:19 +00:00
2019-01-05 17:02:17 +00:00
sub start() {
2019-01-16 22:24:47 +00:00
ubyte ub
byte b
word w
uword uw
ubyte[2] uba
byte[2] ba
word[2] wa
uword[2] uwa
str s
str_p sp
str_s ss
str_ps sps
s = ub as str
sp = ub as str_p
ss = ub as str_s
sps = ub as str_ps
s = b as str
sp = b as str_p
ss = b as str_s
sps = b as str_ps
s = w as str
sp = w as str_p
ss = w as str_s
sps = w as str_ps
s = uw as str
sp = uw as str_p
ss = uw as str_s
sps = uw as str_ps
2019-01-15 23:28:30 +00:00
}
2019-01-02 22:32:41 +00:00
}
2019-01-12 17:11:36 +00:00