prog8/examples/test.p8

26 lines
573 B
Plaintext
Raw Normal View History

%import diskio
%import textio
%zeropage basicsafe
main {
2024-05-18 17:15:31 +02:00
sub start() {
if diskio.f_open("tehtriz.asm") {
repeat 10 {
void diskio.f_read($6000, 9999)
}
uword pl, ph, sl, sh
2024-05-22 21:47:02 +02:00
pl, ph, sl, sh = diskio.f_tell()
txt.print("\npos: ")
txt.print_uwhex(ph, true)
txt.print_uwhex(pl, false)
txt.print("\nsize: ")
txt.print_uwhex(sh, true)
txt.print_uwhex(sl, false)
txt.nl()
diskio.f_close()
}
2024-05-18 17:15:31 +02:00
}
}