How to load programs from SD card in picocalc with picomite?

I am new to picocalc. And using the stock firmware. Can someone please help in letting me show how to load programs from SD Card? Because typing by hand for long programs is really tough.

Standard BASIC “LOAD” command.

LOAD “myprog.bas”

The .bas and closing quote are optional.

You can save a program with the SAVE command which works in a similar way.

To load and run, you can just RUN "myprog
which will load it from the SD card and run it.

Oh, the SD card is the B: drive. So either make drive B: default (B: or DRIVE "B: command) or add the drive letter to the file name, LOAD "B:myprog

1 Like

Thanks a lot. It is working. I have few more questions like when I run FILES it only shows drive A. How can I see available drives?

Either make the B: drive default (B: or DRIVE "B:) or do FILES "B:

1 Like