2020-03-24 23:32:54 +00:00
|
|
|
%import c64lib
|
2020-03-14 23:47:21 +00:00
|
|
|
%import c64utils
|
2020-04-08 22:12:50 +00:00
|
|
|
%import c64flt
|
2020-04-03 20:44:10 +00:00
|
|
|
%zeropage basicsafe
|
2019-08-09 00:15:31 +00:00
|
|
|
|
2020-03-24 18:37:54 +00:00
|
|
|
|
2020-03-24 23:32:54 +00:00
|
|
|
main {
|
|
|
|
sub start() {
|
2020-04-08 22:12:50 +00:00
|
|
|
ubyte ubb = 44
|
|
|
|
byte bbb=44
|
|
|
|
uword uww = 4444
|
|
|
|
word www = 4444
|
|
|
|
float flt = 4.4
|
|
|
|
|
|
|
|
A = ubb
|
|
|
|
A = ubb as byte
|
|
|
|
A = bbb
|
|
|
|
A = bbb as ubyte
|
|
|
|
|
2020-04-06 16:19:14 +00:00
|
|
|
str foo = "foo"
|
2020-03-13 01:05:15 +00:00
|
|
|
}
|
2020-03-21 17:39:36 +00:00
|
|
|
}
|
2020-03-24 21:02:50 +00:00
|
|
|
|
2020-03-24 23:32:54 +00:00
|
|
|
|