prog8/examples/test.p8

23 lines
295 B
Plaintext
Raw Normal View History

%import textio
%import floats
%zeropage basicsafe
%import test_stack
2020-08-27 17:47:50 +00:00
main {
2020-10-09 20:47:42 +00:00
sub start() {
txt.fill_screen('.',2)
2020-12-01 02:03:50 +00:00
repeat {
}
}
sub delay () {
ubyte tt
repeat 55 {
repeat 255 {
tt++
}
}
}
2020-08-27 17:47:50 +00:00
}