prog8/examples/test.p8

14 lines
211 B
Plaintext
Raw Normal View History

2024-10-27 20:50:48 +00:00
%import textio
2024-11-06 23:48:13 +00:00
%zeropage dontuse
%option no_sysinit
2024-11-06 23:48:13 +00:00
%address $5000
%launcher none
2024-10-18 20:22:34 +00:00
main {
2024-11-04 23:15:40 +00:00
sub start() {
2024-11-06 23:48:13 +00:00
txt.print("address of start: ")
txt.print_uwhex(&start, true)
2024-11-04 23:15:40 +00:00
txt.nl()
}
}