13f935aa88
Also, add the new `bshell` emulated tool. BASIC is on its way to replace the shell.
16 lines
219 B
NASM
16 lines
219 B
NASM
; FS-related basic commands
|
|
|
|
basFLS:
|
|
ld iy, .iter
|
|
jp fsIter
|
|
.iter:
|
|
ld a, FS_META_FNAME_OFFSET
|
|
call addHL
|
|
call printstr
|
|
jp printcrlf
|
|
|
|
basFSCmds:
|
|
.dw basFLS
|
|
.db "fls", 0, 0, 0
|
|
.db 0xff, 0xff, 0xff ; end of table
|