prog8/examples/test.p8

21 lines
256 B
Plaintext
Raw Normal View History

%import syslib
2020-09-21 16:42:28 +00:00
; %import graphics
%import textio
2020-09-21 21:39:25 +00:00
%zeropage basicsafe
2020-08-27 17:47:50 +00:00
main $0900{
2020-09-16 21:04:18 +00:00
sub start() {
2020-09-22 19:50:56 +00:00
ubyte x= 1
do {
ubyte v = x
x++
} until v==0
2020-09-22 19:50:56 +00:00
; @($c000) *= 99 ; TODO implement
2020-09-16 21:04:18 +00:00
}
2020-08-27 17:47:50 +00:00
}