prog8/examples/test.p8

19 lines
252 B
Plaintext
Raw Normal View History

2019-07-15 01:57:51 +00:00
%import c64flt
2019-07-01 21:41:30 +00:00
%zeropage basicsafe
2019-07-15 01:57:51 +00:00
%option enable_floats
2019-03-29 01:13:28 +00:00
2019-07-29 21:11:13 +00:00
main {
2019-07-30 00:49:13 +00:00
ubyte abc
sub start() {
2019-07-30 00:49:13 +00:00
A=abc
2019-07-30 00:49:13 +00:00
if A>0
Y=abc ; @todo gets prefixed with anon1_ but should not be because is found in other scope...
2019-07-22 16:58:55 +00:00
}
}