prog8/examples/test.p8

11 lines
151 B
Plaintext
Raw Normal View History

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