On Sat, 15 Apr 2000 20:54:39 GMT, in article
<38f8d4f5.18270
...@news.cyberus.ca>, Brian Hilchie wrote:
> I have an emulator and disk images, but I don't know the commands to
> get a directory and load and run a program. Can someone please help?
> Thanks!
Hi Brian,
For starters, the floppy disk drives are called 0 and 1
(rather than A and B like in MS-DOS or MS-Windows).
(a) To get a directory listing of disk 0
DIR 0
(b) To get a directory listing of disk 1
DIR 1
(c) To run a BASIC program "XXXX.BAS" in drive 0
RUN "0:XXXX.BAS"
Don't forget the quote marks around the file.
(d) To load a BASIC program "YYYY.BAS" in drive 1,
without running it at the same time
LOAD "1:YYYY.BAS"
(e) To run a machine language program "ZZZZ.BIN" on drive 2
(if you use 3 floppy disk drives, the third one is drive 2)
LOADM "2:ZZZZ.BIN" : EXEC
Cheers,
Ralph.
--
Please reply to the newsgroup. That is why it exists.
For e-mail address: replace repeated letters (like "aaabbbcccxxxyyyzzz")
with single letters (like "abcxyz").