prog8/examples/atari/hello.p8

14 lines
194 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
%address $2000
; hello world test for Atari 8-bit
main {
2022-02-25 22:48:39 +00:00
sub start() {
txt.print("Hello, World!")
2022-02-25 22:48:39 +00:00
txt.nl()
txt.waitkey()
}
2022-02-25 22:48:39 +00:00
}