prog8/examples/test.p8

11 lines
151 B
Plaintext
Raw Normal View History

2023-07-02 19:38:44 +02:00
%import textio
%zeropage basicsafe
main {
2023-07-02 19:38:44 +02:00
romsub $FFD2 = chrout(ubyte ch @ A)
sub start() {
ubyte ch = '2'
2023-07-02 19:38:44 +02:00
chrout(ch)
2023-06-27 01:59:22 +02:00
}
}