Mercurial > hg > Members > kono > nitros9-code
annotate level1/ReadMe @ 1551:8cb72bbe71f4
Updated
author | boisy |
---|---|
date | Sat, 08 May 2004 23:41:54 +0000 |
parents | eb5365d81751 |
children | e7b88498bb05 |
rev | line source |
---|---|
1392 | 1 **************************** |
2 NitrOS-9/6809 Level 1 ReadMe | |
3 **************************** | |
881 | 4 |
1392 | 5 Welcome to NitrOS-9/6809 Level 1 for the Radio Shack/TRS-80 Color Computer. |
881 | 6 |
1008 | 7 DISTRIBUTION |
8 ============ | |
1447
ddf57424f7b3
Updated ReadMe to reflect addition of 720K disk image
boisy
parents:
1436
diff
changeset
|
9 There are two double-sided 40 track DSK images ending in '_ds40_1.dsk', |
ddf57424f7b3
Updated ReadMe to reflect addition of 720K disk image
boisy
parents:
1436
diff
changeset
|
10 and '_ds40_2.dsk' for disks 1 and 2, respectively. For those with |
ddf57424f7b3
Updated ReadMe to reflect addition of 720K disk image
boisy
parents:
1436
diff
changeset
|
11 3.5" 720K drives, an 80 track DSK image ending in '_ds80.dsk' is also |
ddf57424f7b3
Updated ReadMe to reflect addition of 720K disk image
boisy
parents:
1436
diff
changeset
|
12 included in the distribution. |
881 | 13 |
1008 | 14 USING THE DISK IMAGES |
15 ===================== | |
16 If you wish to transfer the disk images to a 5.25" floppy disk for use | |
17 with a real CoCo, follow the steps below: | |
881 | 18 |
1008 | 19 WINDOWS/DOS: |
20 | |
1551 | 21 1. Download and install the latest version of DSKINI/RETRIEVE at |
22 http://www.nitros9.org/ | |
1008 | 23 |
24 2. Insert a blank 5.25" DS floppy in to your drive (we assume B:) | |
881 | 25 |
1008 | 26 3. Type the following command, replacing the name of the image: |
27 | |
28 DSKINI /T40 /D B: <diskimagefile> | |
29 | |
30 Where <diskimagefile> is the image file you want to transfer to the | |
31 floppy disk. The image file transfer should start. When it is done, | |
32 take out the disk and try booting your CoCo with it. | |
33 | |
34 Repeat steps 2-3 for each additional disk. | |
881 | 35 |
36 | |
1008 | 37 LINUX: |
38 | |
39 1. Download and install the latest version of fdutils from | |
40 http://fdutils.linux.lu/ | |
881 | 41 |
1008 | 42 2. Once installed, edit the /usr/local/etc/mediaprm file and add the |
43 following lines at the end of the file: | |
44 | |
45 "COCO360": | |
1448 | 46 DS DD sect=18 cyl=40 ssize=256 tpi=48 |
47 | |
48 "COCO720": | |
49 DS DD sect=18 cyl=80 ssize=256 tpi=96 | |
1008 | 50 |
51 3. Insert your blank floppy into the drive on your Linux box. | |
52 | |
53 4. Type the following command: | |
881 | 54 |
1008 | 55 setfdprm /dev/fd1 coco360 (360K 5.25" floppy disk) |
56 | |
57 This assumes your floppy drive is /dev/fd1. You may need to make | |
58 adjustments to the above commands for your environment. | |
59 | |
60 5. After typing the setfdprm command, the floppy drive unit should spin | |
61 for a second then stop. Type this command: | |
881 | 62 |
1008 | 63 dd if=<diskimagefile> of=/dev/fd1 |
881 | 64 |
1008 | 65 Where <diskimagefile> is the image file you want to transfer to the |
66 floppy disk. The image file transfer should start. When it is done, | |
67 take out the disk and try booting your CoCo with it. | |
68 | |
69 Repeat steps 3-5 for each additional disk. | |
70 |