prog8/compiler/test/fixtures/charVarAsRomsubArg.p8

8 lines
95 B
Lua

main {
romsub $FFD2 = chrout(ubyte ch @ A)
sub start() {
ubyte ch = '\n'
chrout(ch)
}
}