Skip to content
This repository was archived by the owner on Dec 24, 2020. It is now read-only.

Commit

Permalink
Converted 1152Kb PC AT configs to 1024Kb
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffpar committed Dec 11, 2018
1 parent 78aa43e commit f49058c
Show file tree
Hide file tree
Showing 34 changed files with 123 additions and 129 deletions.
2 changes: 1 addition & 1 deletion _posts/2014-10-13-the-8mhz-ibm-pc-at-5170.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ category: JavaScript
permalink: /blog/2014/10/13/
---

I just added my first [8Mhz IBM PC AT](/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/) machine configuration
I just added my first [8Mhz IBM PC AT](/devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/) machine configuration
to the list of [IBM PC Machine Configurations](/devices/pcx86/machine/), and not surprisingly, the new machine
fails to boot.

Expand Down
40 changes: 18 additions & 22 deletions _posts/2014-10-17-improved-support-for-pc-at-machines.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,31 @@ category: Releases
permalink: /blog/2014/10/17/
---

The [8Mhz IBM PC AT](/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/) machine configuration now boots in
The [8Mhz IBM PC AT](/devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/) machine configuration now boots in
[PCjs v1.15.5](https://github.com/jeffpar/pcjs/releases/tag/v1.15.5), which includes the following fixes:

+ The BIOS expects memory refresh to occur roughly every 16us, which I've resolved by tying the state
of the refresh bit in port 0x61 to bit 6 of the CPU cycle count (see *in8042RWReg()* in [chipset.js](/modules/pcx86/lib/chipset.js));
the original AT BIOS was satisfied with a refresh bit that merely alternated, whereas the new AT BIOS
is much more particular about the rate at which that bit changes, since many hard-coded delay-loops have
now been replaced with code that waits for a specific number of refresh cycles.

of the refresh bit in port 0x61 to bit 6 of the CPU cycle count (see *in8042RWReg()* in [chipset.js](/modules/pcx86/lib/chipset.js));
the original AT BIOS was satisfied with a refresh bit that merely alternated, whereas the new AT BIOS
is much more particular about the rate at which that bit changes, since many hard-coded delay-loops have
now been replaced with code that waits for a specific number of refresh cycles.
+ The 8042 Keyboard Controller emulation needed a few more tweaks, mainly with respect to what happens
when the keyboard's "clock" line is toggled (see *set8042CmdData()* in [chipset.js](/modules/pcx86/lib/chipset.js)).

when the keyboard's "clock" line is toggled (see *set8042CmdData()* in [chipset.js](/modules/pcx86/lib/chipset.js)).
+ The Floppy Drive Controller needed to add support for the "READ ID" command, in order for the BIOS
"double-stepping" test to work (double-stepping is required on an 80-track drive when attempting to read
a 40-track diskette).

"double-stepping" test to work (double-stepping is required on an 80-track drive when attempting to read
a 40-track diskette).
+ The BIOS Diskette Reset function does something odd after resetting the Floppy Drive Controller: it
issues not one but *four* "SENSE INTERRUPT STATUS" commands to the FDC, and expects each response to
return an incrementally larger drive number. I found this a bit mystifying, considering that IBM's
own FDC/HDC "combo card" supports a maximum of *two* diskette drives. But, there's no point arguing
with a BIOS that's almost 30 years old.

issues not one but *four* "SENSE INTERRUPT STATUS" commands to the FDC, and expects each response to
return an incrementally larger drive number. I found this a bit mystifying, considering that IBM's
own FDC/HDC "combo card" supports a maximum of *two* diskette drives. But, there's no point arguing
with a BIOS that's almost 30 years old.
+ The BIOS attempts to detect what its authors must have considered a common problem: the user's failure
to run SETUP after installing a second hard drive. So, when the CMOS reports only one hard drive installed,
the BIOS probes for a second hard drive anyway, and it does so by simply writing the drive number to the ATC's
"DRVHD" register and then immediately reading the "STATUS" register, without issuing any intervening command.
It was an easy fix to *outATCDrvHd()* in [hdc.js](/modules/pcx86/lib/hdc.js), but I was surprised
to discover that the ATC had this behavior, and now I'm wondering if there are any other I/O operations
that must immediately update the "STATUS" register.
to run SETUP after installing a second hard drive. So, when the CMOS reports only one hard drive installed,
the BIOS probes for a second hard drive anyway, and it does so by simply writing the drive number to the ATC's
"DRVHD" register and then immediately reading the "STATUS" register, without issuing any intervening command.
It was an easy fix to *outATCDrvHd()* in [hdc.js](/modules/pcx86/lib/hdc.js), but I was surprised
to discover that the ATC had this behavior, and now I'm wondering if there are any other I/O operations
that must immediately update the "STATUS" register.

This PCjs release also fixes a problem reported by a user: if you disable **localStorage** support in your
browser, previous versions of PCjs would fault. While every browser that supports PCjs also supports
Expand Down
2 changes: 1 addition & 1 deletion _posts/2014-10-23-improved-pc-dos-700-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ PC DOS 7.00 still can't be setup from its specially-formatted 1.84Mb
through "PC DOS 7.00 (Disk 5)", so your best bet is to boot from the 1.44Mb "PC DOS 7.00 (1.44M Boot)".

Note that you must also use a fairly new 80286 machine configuration, like this
[8Mhz IBM PC AT](/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/),
[8Mhz IBM PC AT](/devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/),
in order to use 1.44Mb diskette images; previous models did not support 3.5-inch diskette drives, unless they had been
retrofitted with a newer [BIOS](/devices/pcx86/rom/5170/).

Expand Down
12 changes: 6 additions & 6 deletions _posts/2015-01-17-pcjs-uncompiled.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ date: 2015-01-17 11:00:00
category: Features
permalink: /blog/2015/01/17/
machines:
- id: at-ega-1152k-rev3
- id: at-ega-1024k-rev3
type: pcx86
debugger: true
uncompiled: true
config: /devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/visual/machine.xml
config: /devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/visual/machine.xml
---

Most PCx86 machines on [{{ site.pcjs.domain }}](/) run with a compiled version of PCx86, which is produced
Expand All @@ -32,19 +32,19 @@ Here's what a typical Markdown file would look like:
...
machines:
- type: pcx86
id: at-ega-1152k-rev3
id: at-ega-1024k-rev3
debugger: true
uncompiled: true
config: /devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/visual/machine.xml
config: /devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/visual/machine.xml
---
...
{% include machine.html id="at-ega-1152k-rev3" %}
{% include machine.html id="at-ega-1024k-rev3" %}

{% endraw %}

In fact, that's what we've done in the Markdown file you are reading right now.

{% include machine.html id="at-ega-1152k-rev3" %}
{% include machine.html id="at-ega-1024k-rev3" %}

*[@jeffpar](https://jeffpar.com)*
*January 17, 2015 (Updated December 10, 2015 to reflect the new `uncompiled` property)*
6 changes: 3 additions & 3 deletions _posts/2015-01-28-new-pcjs-control-panel.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ date: 2015-01-28 11:00:00
category: Control Panel
permalink: /blog/2015/01/28/
machines:
- id: at-ega-1152k-rev3
- id: at-ega-1024k-rev3
type: pcx86
debugger: true
config: /devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/visual/machine.xml
config: /devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/visual/machine.xml
---

A new PCx86 Control Panel is under development, featuring a new "Display Panel" that will provide a variety of
information about the machine, in real-time, and operate more efficiently than previous DOM-based Control Panels.

A preview of the layout is shown below. There's not much to see yet, as this is very much a work-in-progress.

{% include machine.html id="at-ega-1152k-rev3" %}
{% include machine.html id="at-ega-1024k-rev3" %}

*[@jeffpar](https://jeffpar.com)*
*January 28, 2015*
13 changes: 13 additions & 0 deletions devices/pcx86/machine/5170/ega/1024kb/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
layout: page
title: IBM PC AT (Model 5170) with Enhanced Graphics Adapter
permalink: /devices/pcx86/machine/5170/ega/1024kb/
redirect_from:
- /configs/pc/machines/5170/ega/1024kb/
---

IBM PC AT with 1Mb RAM and Enhanced Graphics Adapter (EGA)
----------------------------------------------------------

* [IBM PC AT (6Mhz, 1Mb RAM, 20Mb Hard Disk) with Enhanced Color Display](/devices/pcx86/machine/5170/ega/1024kb/rev1/) ([Debugger](/devices/pcx86/machine/5170/ega/1024kb/rev1/debugger/))
* [IBM PC AT (8Mhz, 1Mb RAM, 20Mb Hard Disk) with Enhanced Color Display](/devices/pcx86/machine/5170/ega/1024kb/rev3/) ([Debugger](/devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/), [Visualizer](/devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/visual/))
10 changes: 10 additions & 0 deletions devices/pcx86/machine/5170/ega/1024kb/rev1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: page
title: IBM PC AT (6Mhz, 1Mb RAM, 20Mb Hard Disk) with Enhanced Color Display
permalink: /devices/pcx86/machine/5170/ega/1024kb/rev1/
machines:
- id: ibm5170
type: pcx86
---

{% include machine.html id="ibm5170" %}
11 changes: 11 additions & 0 deletions devices/pcx86/machine/5170/ega/1024kb/rev1/debugger/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: page
title: IBM PC AT (6Mhz, 1Mb RAM, 20Mb Hard Disk) with Enhanced Color Display and Debugger
permalink: /devices/pcx86/machine/5170/ega/1024kb/rev1/debugger/
machines:
- id: ibm5170
type: pcx86
debugger: true
---

{% include machine.html id="ibm5170" %}
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.73.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (6Mhz), 1152Kb RAM, 20Mb Hard Disk, 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1152k-rev1" name="IBM PC AT" buswidth="24"/>
<name pos="center">IBM PC AT (6Mhz), 1Mb RAM, 20Mb Hard Disk, 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1024k-rev1" name="IBM PC AT" buswidth="24"/>
<cpu id="cpu286" model="80286"/>
<ram id="ramLow" addr="0x00000" size="0xa0000" test="false" comment="ROM BIOS memory test has been disabled"/>
<ram id="ramExt" addr="0x100000" size="0x80000" comment=""/>
<ram id="ramExt" addr="0x100000" size="0x60000" comment=""/>
<rom id="romBIOS" addr="0xf0000" size="0x10000" alias="0xff0000" file="/devices/pcx86/rom/5170/1984-01-10/ATBIOS-REV1.json"/>
<video ref="/devices/pcx86/video/ibm/ega/1984-09-13/ibm-ega-5154-128k-autolockfs.xml"/>
<fdc ref="/disks/pcx86/library.xml" autoMount='{A: {name: "PC DOS 3.00 (Disk 1)"}, B: {name: "PC DOS 3.00 (Disk 2)"}}'/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.73.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (6Mhz), 1152Kb RAM, 20Mb Hard Disk, 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1152k-rev1" name="IBM PC AT" buswidth="24"/>
<name pos="center">IBM PC AT (6Mhz), 1Mb RAM, 20Mb Hard Disk, 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1024k-rev1" name="IBM PC AT" buswidth="24"/>
<cpu id="cpu286" model="80286"/>
<ram id="ramLow" addr="0x00000" size="0xa0000" test="false" comment="ROM BIOS memory test has been disabled"/>
<ram id="ramExt" addr="0x100000" size="0x80000" comment=""/>
<ram id="ramExt" addr="0x100000" size="0x60000" comment=""/>
<rom id="romBIOS" addr="0xf0000" size="0x10000" alias="0xff0000" file="/devices/pcx86/rom/5170/1984-01-10/ATBIOS-REV1.json"/>
<video ref="/devices/pcx86/video/ibm/ega/1984-09-13/ibm-ega-5154-128k-autolockfs.xml"/>
<fdc ref="/disks/pcx86/library.xml" autoMount='{A: {name: "PC DOS 3.00 (Disk 1)"}, B: {name: "PC DOS 3.00 (Disk 2)"}}'/>
Expand Down
10 changes: 10 additions & 0 deletions devices/pcx86/machine/5170/ega/1024kb/rev3/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: page
title: IBM PC AT (8Mhz, 1Mb RAM, 20Mb Hard Disk) with Enhanced Color Display
permalink: /devices/pcx86/machine/5170/ega/1024kb/rev3/
machines:
- id: ibm5170
type: pcx86
---

{% include machine.html id="ibm5170" %}
11 changes: 11 additions & 0 deletions devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: page
title: IBM PC AT (8Mhz, 1Mb RAM, 20Mb Hard Disk) with Enhanced Color Display and Debugger
permalink: /devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/
machines:
- id: ibm5170
type: pcx86
debugger: true
---

{% include machine.html id="ibm5170" %}
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.73.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 1152Kb RAM, 20Mb Hard Disk (Formatted), 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1152k-rev3" name="IBM PC AT" buswidth="24"/>
<name pos="center">IBM PC AT (8Mhz), 1Mb RAM, 20Mb Hard Disk (Formatted), 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1024k-rev3" name="IBM PC AT" buswidth="24"/>
<cpu id="cpu286" model="80286" cycles="8000000"/>
<ram id="ramLow" addr="0x00000" size="0xa0000" test="false" comment="ROM BIOS memory test has been disabled"/>
<ram id="ramExt" addr="0x100000" size="0x80000" comment=""/>
<ram id="ramExt" addr="0x100000" size="0x60000" comment=""/>
<rom id="romBIOS" addr="0xf0000" size="0x10000" alias="0xff0000" file="/devices/pcx86/rom/5170/1985-11-15/ATBIOS-REV3.json"/>
<video ref="/devices/pcx86/video/ibm/ega/1984-09-13/ibm-ega-5154-128k-autolockfs.xml"/>
<fdc ref="/disks/pcx86/library.xml" autoMount='{A: {name: "PC DOS 3.30 (Disk 1)"}, B: {name: "PC DOS 3.30 (Disk 2)"}}'/>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: page
title: IBM PC AT (8Mhz, 1Mb RAM, 20Mb Hard Disk) with EGA Display and Debugger
permalink: /devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/visual/
machines:
- id: ibm5170
type: pcx86
debugger: true
---

{% include machine.html id="ibm5170" %}
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.73.1/machine.xsl"?>
<machine id="ibm5170rev3" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 1152Kb RAM, 20Mb Hard Disk (Formatted), 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1152k-rev3" name="IBM PC AT" buswidth="24"/>
<name pos="center">IBM PC AT (8Mhz), 1Mb RAM, 20Mb Hard Disk (Formatted), 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1024k-rev3" name="IBM PC AT" buswidth="24"/>
<cpu id="cpu286" model="80286" cycles="8000000" autostart="false"/>
<ram id="ramLow" addr="0x00000" size="0xa0000" test="true" comment="ROM BIOS memory test has been ENABLED"/>
<ram id="ramExt" addr="0x100000" size="0x80000" comment=""/>
<ram id="ramExt" addr="0x100000" size="0x60000" comment=""/>
<rom id="romBIOS" addr="0xf0000" size="0x10000" alias="0xff0000" file="/devices/pcx86/rom/5170/1985-11-15/ATBIOS-REV3.json"/>
<video ref="/devices/pcx86/video/ibm/ega/1984-09-13/ibm-ega-5154-128k-autolockfs.xml"/>
<fdc ref="/disks/pcx86/library.xml" autoMount='{A: {name: "PC DOS 3.20 (Disk 1)"}, B: {name: "PC DOS 3.20 (Disk 2)"}}'/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.73.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 1152Kb RAM, 20Mb Hard Disk (Formatted), 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1152k-rev3" name="IBM PC AT" buswidth="24"/>
<name pos="center">IBM PC AT (8Mhz), 1Mb RAM, 20Mb Hard Disk (Formatted), 128Kb EGA, Enhanced Color Display</name>
<computer id="at-ega-1024k-rev3" name="IBM PC AT" buswidth="24"/>
<ram id="ramLow" addr="0x00000" size="0xa0000" test="false" comment="ROM BIOS memory test has been disabled"/>
<ram id="ramExt" addr="0x100000" size="0x80000" comment=""/>
<ram id="ramExt" addr="0x100000" size="0x60000" comment=""/>
<rom id="romBIOS" addr="0xf0000" size="0x10000" alias="0xff0000" file="/devices/pcx86/rom/5170/1985-11-15/ATBIOS-REV3.json"/>
<video ref="/devices/pcx86/video/ibm/ega/1984-09-13/ibm-ega-5154-128k-autolockfs.xml"/>
<fdc ref="/disks/pcx86/library.xml" autoMount='{A: {name: "PC DOS 3.30 (Disk 1)"}, B: {name: "PC DOS 3.30 (Disk 2)"}}'/>
Expand Down
13 changes: 0 additions & 13 deletions devices/pcx86/machine/5170/ega/1152kb/README.md

This file was deleted.

12 changes: 0 additions & 12 deletions devices/pcx86/machine/5170/ega/1152kb/rev1/README.md

This file was deleted.

11 changes: 0 additions & 11 deletions devices/pcx86/machine/5170/ega/1152kb/rev1/debugger/README.md

This file was deleted.

10 changes: 0 additions & 10 deletions devices/pcx86/machine/5170/ega/1152kb/rev3/README.md

This file was deleted.

11 changes: 0 additions & 11 deletions devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/README.md

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions devices/pcx86/machine/5170/ega/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ All our Enhanced Graphic Adapter (EGA) configurations of the IBM PC AT (Model 51

* [IBM PC AT (6Mhz, 640Kb RAM, Dual Floppy)](/devices/pcx86/machine/5170/ega/640kb/)

* [IBM PC AT (6Mhz, 1Mb RAM, 20Mb Hard Disk)](/devices/pcx86/machine/5170/ega/1152kb/rev1/) ([Debugger](/devices/pcx86/machine/5170/ega/1152kb/rev1/debugger/))
* [IBM PC AT (8Mhz, 1Mb RAM, 20Mb Hard Disk)](/devices/pcx86/machine/5170/ega/1152kb/rev3/) ([Debugger](/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/), [Visualizer](/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/visual/))
* [IBM PC AT (6Mhz, 1Mb RAM, 20Mb Hard Disk)](/devices/pcx86/machine/5170/ega/1024kb/rev1/) ([Debugger](/devices/pcx86/machine/5170/ega/1024kb/rev1/debugger/))
* [IBM PC AT (8Mhz, 1Mb RAM, 20Mb Hard Disk)](/devices/pcx86/machine/5170/ega/1024kb/rev3/) ([Debugger](/devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/), [Visualizer](/devices/pcx86/machine/5170/ega/1024kb/rev3/debugger/visual/))

* [IBM PC AT (8Mhz, 2Mb RAM, 20Mb Hard Disk)](/devices/pcx86/machine/5170/ega/2048kb/rev3/) ([Debugger](/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/), [Visualizer](/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/visual/))
* [IBM PC AT (8Mhz, 2Mb RAM, 20Mb Hard Disk) with VT100](/devices/pcx86/machine/5170/ega/2048kb/rev3/vt100/) ([Debuggers](/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/vt100/))
2 changes: 1 addition & 1 deletion disks/pcx86/dos/dresearch/5.00/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permalink: /disks/pcx86/dos/dresearch/5.00/
machines:
- id: ibm5170-drdos500
type: pcx86
config: /devices/pcx86/machine/5170/ega/1152kb/rev1/debugger/machine.xml
config: /devices/pcx86/machine/5170/ega/1024kb/rev1/debugger/machine.xml
autoMount:
A:
name: DR DOS 5.00 (Disk 1)
Expand Down
2 changes: 1 addition & 1 deletion disks/pcx86/dos/dresearch/6.00/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permalink: /disks/pcx86/dos/dresearch/6.00/
machines:
- id: ibm5170-drdos600
type: pcx86
config: /devices/pcx86/machine/5170/ega/1152kb/rev1/machine.xml
config: /devices/pcx86/machine/5170/ega/1024kb/rev1/machine.xml
drives: '[{name:"DR DOS 6.00 (20Mb)",type:2,path:"/disks-demo/pcx86/drives/20mb/DRDOS600.json"}]'
floppyDrives: '[{boot:false}]'
autoMount:
Expand Down
Loading

0 comments on commit f49058c

Please sign in to comment.