1001 Disk Drive Addendum
Welcome to the world of massive storage of information. To
use your 1001 disk drive with the Commodore 64 you will need an IEEE
interface and a F-I cable. With a 8-128, 8032, or Pet computer you will only
need a P-I cable. When using the 1001 disk drive with another disk drive,
you will have to change the device number of one of the drives (All
Commodore disk: units come from the factory with a device number of 8). Read
the following section how change the device number, if you have more than
one drive. The 1001 disk; drive has the same disk storage format as the 8250
disk drive.
How to Change the Device Number
The device number can be changed temporarily changed
via a software command or program. The device number may be permanently by
modifications within the disk unit.
Software Method:
Format for changing device number:
odn=old device number ndn=new
device number
open 15,odn,15
print#15,"m-w"chrs(12)chrs(C))chr$(2)chr$(ndn+32)chr$(ndn+64) close 15
Example of
changing device number from 8 to 9:
Open 15,8,15
** MISSING TEXT **
chr$ (2)chr$(9+32)chr$(9+64 )
** MISSING TEXT **
NOTE: The device number will only remain in effect as long as the
disk drive power is on.
Once the power is turned off the disk drive is
set back to device number
of 8.
NOTE: If you prefer not to change the device number
at all, you can operate the 15`41 simply by unplugging the serial cable from
the 1541 to the interface. To operate the SFD 1001 simply turn the 1541 OFF.
PAGE 1
Hardware Method:
It's an easy Job to permanently change the device number of your disk drive
for use in multiple drive systems. The tools needed are a phillips-head
screwdriver and a knife.
Steps to changing device numbers
1) Disconnect all cables from drive, including
power.
2) Turn ' drive upside down on a flat, steady
surface.
3) Remove the 4 screws holding disk drive box
together.
4) Carefully turn drive right side up, and remove top drive and case.
5) Locate Chip A (towards the back of the follow
Opition A or Opition B on the following page.
6) Replace the top case and 4 screws.
7) Reconnect cables and power up.
Changing to other device numbers:
By cutting the appropriate traces or bending the
correct
pins, you can change the device number to 9 through 15.
Device Number |
#1 |
#2 |
#4 |
|
8 |
0 |
0 |
0 |
0=Unchanged |
9 |
1 |
0 |
0 |
1-Cut/Bend |
10 |
0 |
1 |
0 |
|
11 |
1 |
1 |
0 |
|
12 |
0 |
0 |
1 |
|
13 |
1 |
0 |
1 |
|
14 |
0 |
1 |
1 |
|
15 |
1 |
1 |
1 |
|
NOTE: To change the device number back to 8 you have
to put the pins back into the socket or connect the cut trace with some
solder.
Page 2
BACK OF 1001 DISK DRIVE

Page 3
SIMPLE OPERATING INSTRUCTIONS
LOAD Commands
To get a program from the disk unit to the computers memory.
Format for LOAD Command:
load name$,device#
Example:
load "TEST",8
DIRECTORY Command:
To get a list of the programs or files on the disk.
Example:
load"$",8
SAVE Command:
To get a program from the computer's memory to the disk.
Format for SAVE Commands
save name$,device$
Example:
save "TEST",8
==========================================================================
DISK Commands:
Before you use a disk command you must
open a channel to the disk drive.
Format for sending DISK Commands:
open15,device#,15
print#15,commands$
close15
Example:
open 15,8,15
print#15,"n0:data disk,dd"
close15
Page 4
NEW Disk Commands:
This command is necessary when using a diskette for the first
time. The NEW
command erases the entire diskette, and creates the
directory.
Format for NEW Command:
print#15,"nO:name,id"
Example:
print#15,"nO:data disk,d2"
RENAME Disk Command:
This command allows you -to change the name of a file or
program on the
directory.
Format for RENAME Command:
print#15,"rO:newname=O:oldname"
Example:
print#15,"rO:SAMPLE"O:TEST"
COPY Disk Command
This command allows you to copy
any file on the disk drive. This will not let
you copy from one drive to another (unless you have a dual
drive).
Format for COPY Command:
print#15,"cO:newfilw=O:oldfile"
Example:
print#15,"cO:BACKUP=O:ORIGINAL"
Page 5
SCRATCH Disk Command
This command allows you to create
unwanted files or programs from the disk,
which then makes room for new information.
Format for SCRATCH Command:
print#15,"sO:name"
Example:
print#15,"sO: TEST"
INITIALIZE Disk Commands
When an error condition prevents
you from performing some operation, the
INITIALIZE command returns the disk drive to the same state
as when powered up.
Format for INITIALIZE Command:
print#15,"i"
Page 6 |