mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
15 lines
255 B
Lua
15 lines
255 B
Lua
%import textio
|
|
%import diskio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
void diskio.f_open("does-not-exist")
|
|
txt.print_ub(cbm.READST())
|
|
txt.nl()
|
|
cbm.CLEARST()
|
|
txt.print_ub(cbm.READST())
|
|
txt.nl()
|
|
}
|
|
}
|