prog8/compiler/examples/test.p8

20 lines
201 B
Plaintext
Raw Normal View History

%import c64utils
%output prg
%launcher basic
~ main {
sub start() {
c64.VMCSB |= 2 ; activate lowercase charset
; greeting
c64scr.print_string("Enter your name: ")
2018-10-16 23:01:01 +00:00
2018-10-16 00:26:35 +00:00
return
2018-10-16 23:01:01 +00:00
2018-10-13 14:09:10 +00:00
}
2018-10-16 00:26:35 +00:00
}