prog8/examples/test.p8

14 lines
193 B
Plaintext
Raw Normal View History

%import c64utils
2020-03-21 22:09:18 +00:00
;%import c64flt
;%option enable_floats
2019-08-17 23:39:48 +00:00
%zeropage basicsafe
2019-08-09 00:15:31 +00:00
main {
2020-03-21 12:22:04 +00:00
sub start() {
2020-03-21 22:09:18 +00:00
str input="???????"
2020-03-21 12:22:04 +00:00
2020-03-21 22:09:18 +00:00
ubyte guess = lsb(c64utils.str2uword(input))
}
2020-03-21 17:39:36 +00:00
}