mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
16 lines
360 B
Lua
16 lines
360 B
Lua
%target c64
|
|
%import textio
|
|
%import syslib
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
%launcher none
|
|
%address 50000
|
|
|
|
; This example shows the directory contents of disk drive 8.
|
|
; You load it with LOAD "diskdir-sys50000",8,1
|
|
; and then call it with SYS 50000.
|
|
|
|
; The only difference with diskdir.p8 is the directives that make this load at 50000.
|
|
|
|
%import diskdir
|