v1.37.1: Fixed a CPU bug wherein resetting a running CPU could result in multiple runCPU() timeout handlers being created (there should never be more than one outstanding runCPU() setTimeout request); also modified the Keyboard component to use a CPU-driven timer instead of setTimeout() for keystroke injection, so that stopping/starting the CPU won't interfere with the injection process

This commit is contained in:
Jeff Parsons 2017-09-24 18:11:44 -07:00 committed by Jeff Parsons
commit 22728fb7e9
289 changed files with 1354 additions and 1176 deletions

View file

@ -5,7 +5,7 @@ permalink: /apps/pcx86/1981/visicalc/
machines: machines:
- id: ibm5150-visicalc - id: ibm5150-visicalc
type: pcx86 type: pcx86
config: /devices/pcx86/machine/5150/mda/64kb/machine.xml config: /devices/pcx86/machine/5150/mda/64kb/debugger/machine.xml
resume: 1 resume: 1
state: /apps/pcx86/1981/visicalc/state.json state: /apps/pcx86/1981/visicalc/state.json
autoMount: autoMount:

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/manifest.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/manifest.xsl"?>
<manifest type="software"> <manifest type="software">
<title>VisiCalc</title> <title>VisiCalc</title>
<!-- Since version numbers are incorporated into the disk image names, and this version number is a bit ugly, we're not exposing it with the normal "version" tag --> <!-- Since version numbers are incorporated into the disk image names, and this version number is a bit ugly, we're not exposing it with the normal "version" tag -->

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/manifest.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/manifest.xsl"?>
<manifest type="software"> <manifest type="software">
<title>Executive Suite</title> <title>Executive Suite</title>
<version/> <version/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/manifest.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/manifest.xsl"?>
<manifest type="software"> <manifest type="software">
<title>RatBas</title> <title>RatBas</title>
<version>2.13</version> <version>2.13</version>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/manifest.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/manifest.xsl"?>
<manifest type="software"> <manifest type="software">
<title>Adventures in Math</title> <title>Adventures in Math</title>
<version>1.00</version> <version>1.00</version>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/manifest.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/manifest.xsl"?>
<manifest type="software"> <manifest type="software">
<title>Rogue</title> <title>Rogue</title>
<version>1.49</version> <version>1.49</version>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/manifest.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/manifest.xsl"?>
<manifest type="software"> <manifest type="software">
<title>ThinkTank</title> <title>ThinkTank</title>
<version>2.41NP</version> <version>2.41NP</version>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/manifest.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/manifest.xsl"?>
<manifest type="software"> <manifest type="software">
<title>The Dungeons of Moria</title> <title>The Dungeons of Moria</title>
<version>4.872</version> <version>4.872</version>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/manifest.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/manifest.xsl"?>
<manifest type="software"> <manifest type="software">
<title>The Dungeons of Moria</title> <title>The Dungeons of Moria</title>
<version>5.5</version> <version>5.5</version>

View file

@ -14,12 +14,12 @@
<xsl:variable name="CSSCLASS">pcjs</xsl:variable> <xsl:variable name="CSSCLASS">pcjs</xsl:variable>
<xsl:variable name="APPCLASS">pcx86</xsl:variable> <xsl:variable name="APPCLASS">pcx86</xsl:variable>
<xsl:variable name="APPNAME">PCx86</xsl:variable> <xsl:variable name="APPNAME">PCx86</xsl:variable>
<xsl:variable name="APPVERSION">1.37.0</xsl:variable> <xsl:variable name="APPVERSION">1.37.1</xsl:variable>
<xsl:variable name="SITEHOST">www.pcjs.org</xsl:variable> <xsl:variable name="SITEHOST">www.pcjs.org</xsl:variable>
<xsl:variable name="BGNDCOLOR">#FAEBD7</xsl:variable> <xsl:variable name="BGNDCOLOR">#FAEBD7</xsl:variable>
<xsl:template name="componentStyles"> <xsl:template name="componentStyles">
<link rel="stylesheet" type="text/css" href="/versions/pcx86/1.37.0/components.css"/> <link rel="stylesheet" type="text/css" href="/versions/pcx86/1.37.1/components.css"/>
</xsl:template> </xsl:template>
<xsl:template name="componentScripts"> <xsl:template name="componentScripts">

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.1/machine.xsl"?>
<machine id="c1psim" type="c1p" border="1" width="100%" padBottom="8px" background="default" style="padding-bottom:8px"> <machine id="c1psim" type="c1p" border="1" width="100%" padBottom="8px" background="default" style="padding-bottom:8px">
<name>OSI Challenger 1P (32Kb) with Disk Support</name> <name>OSI Challenger 1P (32Kb) with Disk Support</name>
<computer id="c1p" name="Challenger 1P"> <computer id="c1p" name="Challenger 1P">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.1/machine.xsl"?>
<machine id="c1pAll" type="c1p" border="1" width="100%" padBottom="8px" background="default" style="padding-bottom:8px"> <machine id="c1pAll" type="c1p" border="1" width="100%" padBottom="8px" background="default" style="padding-bottom:8px">
<name>OSI Challenger 1P (8Kb, Additional Software)</name> <name>OSI Challenger 1P (8Kb, Additional Software)</name>
<computer id="c1p" name="Challenger 1P"> <computer id="c1p" name="Challenger 1P">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.1/machine.xsl"?>
<machine id="c1pAll" type="c1p" border="1" pos="center" background="default" style="padding-bottom:8px"> <machine id="c1pAll" type="c1p" border="1" pos="center" background="default" style="padding-bottom:8px">
<name>OSI Challenger 1P (8Kb, Additional Software)</name> <name>OSI Challenger 1P (8Kb, Additional Software)</name>
<computer id="c1p" name="Challenger 1P"> <computer id="c1p" name="Challenger 1P">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.0/outline.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.1/outline.xsl"?>
<outline> <outline>
<title>Challenger 1P (8Kb) "Server Array"</title> <title>Challenger 1P (8Kb) "Server Array"</title>
<machine id="OSI1" ref="/devices/c1p/machine/8kb/small/machine.xml"/> <machine id="OSI1" ref="/devices/c1p/machine/8kb/small/machine.xml"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.1/machine.xsl"?>
<machine id="c1p8kb" type="c1p" border="1" width="100%" background="default" style="padding-bottom:8px"> <machine id="c1p8kb" type="c1p" border="1" width="100%" background="default" style="padding-bottom:8px">
<name>OSI Challenger 1P (8Kb) with Debugger</name> <name>OSI Challenger 1P (8Kb) with Debugger</name>
<computer id="c1p" name="Challenger 1P"> <computer id="c1p" name="Challenger 1P">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.1/machine.xsl"?>
<machine id="c1pLarge" type="c1p" border="1" pos="center" background="default" style="padding-bottom:8px"> <machine id="c1pLarge" type="c1p" border="1" pos="center" background="default" style="padding-bottom:8px">
<name pos="center">OSI Challenger 1P (circa 1978)</name> <name pos="center">OSI Challenger 1P (circa 1978)</name>
<computer id="c1p" name="Challenger 1P"> <computer id="c1p" name="Challenger 1P">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/c1pjs/1.37.1/machine.xsl"?>
<machine id="c1pSmall" type="c1p" border="1" width="272px" pos="left" padding="16px" background="default" style="padding-bottom:8px"> <machine id="c1pSmall" type="c1p" border="1" width="272px" pos="left" padding="16px" background="default" style="padding-bottom:8px">
<computer id="c1p" name="Challenger 1P"> <computer id="c1p" name="Challenger 1P">
<module type="cpu" refid="cpu6502" start="0x0000" end="0xffff"/> <module type="cpu" refid="cpu6502" start="0x0000" end="0xffff"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="test8080" type="pc8080" border="1" pos="center" background="#FAEBD7"> <machine id="test8080" type="pc8080" border="1" pos="center" background="#FAEBD7">
<name pos="center">8080 Exerciser Test Machine</name> <name pos="center">8080 Exerciser Test Machine</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="test8080" type="pc8080" border="1" pos="center" background="#FAEBD7"> <machine id="test8080" type="pc8080" border="1" pos="center" background="#FAEBD7">
<name pos="center">8080 Exerciser Preliminary Test Machine</name> <name pos="center">8080 Exerciser Preliminary Test Machine</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="test8080" type="pc8080" border="1" pos="center" background="#FAEBD7"> <machine id="test8080" type="pc8080" border="1" pos="center" background="#FAEBD7">
<name pos="center">8080 CPUTEST Machine</name> <name pos="center">8080 CPUTEST Machine</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="test8080" type="pc8080" border="1" pos="center" background="#FAEBD7"> <machine id="test8080" type="pc8080" border="1" pos="center" background="#FAEBD7">
<name pos="center">8080 "Kelly Smith" Test Machine</name> <name pos="center">8080 "Kelly Smith" Test Machine</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="test8080" type="pc8080" border="1" pos="center" background="default"> <machine id="test8080" type="pc8080" border="1" pos="center" background="default">
<name pos="center">8080 Exerciser Test Machine</name> <name pos="center">8080 Exerciser Test Machine</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="invaders" type="pc8080" border="1" pos="center" background="default"> <machine id="invaders" type="pc8080" border="1" pos="center" background="default">
<name pos="center">Space Invaders</name> <name pos="center">Space Invaders</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="invaders" type="pc8080" border="1" pos="center" background="default"> <machine id="invaders" type="pc8080" border="1" pos="center" background="default">
<name pos="center">Space Invaders</name> <name pos="center">Space Invaders</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="vt100" type="pc8080" class="machine-left" border="1" pos="center" background="#FAEBD7"> <machine id="vt100" type="pc8080" class="machine-left" border="1" pos="center" background="#FAEBD7">
<name pos="center">VT100 Terminal</name> <name pos="center">VT100 Terminal</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="vt100" type="pc8080" class="machine-right" border="1" pos="center" background="#FAEBD7"> <machine id="vt100" type="pc8080" class="machine-right" border="1" pos="center" background="#FAEBD7">
<name pos="center">VT100 Terminal</name> <name pos="center">VT100 Terminal</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="vt100" type="pc8080" border="1" pos="center" background="default"> <machine id="vt100" type="pc8080" border="1" pos="center" background="default">
<name pos="center">VT100 Terminal</name> <name pos="center">VT100 Terminal</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="vt100" type="pc8080" class="machine-left" border="1" pos="center" background="#FAEBD7"> <machine id="vt100" type="pc8080" class="machine-left" border="1" pos="center" background="#FAEBD7">
<name pos="center">VT100 Terminal</name> <name pos="center">VT100 Terminal</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="vt100" type="pc8080" class="machine-right" border="1" pos="center" background="#FAEBD7"> <machine id="vt100" type="pc8080" class="machine-right" border="1" pos="center" background="#FAEBD7">
<name pos="center">VT100 Terminal</name> <name pos="center">VT100 Terminal</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.37.1/machine.xsl"?>
<machine id="vt100" type="pc8080" border="1" pos="center" background="default"> <machine id="vt100" type="pc8080" border="1" pos="center" background="default">
<name pos="center">VT100 Terminal</name> <name pos="center">VT100 Terminal</name>
<computer id="computer" busWidth="16"/> <computer id="computer" busWidth="16"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), CGA, 256K, Debugger</name> <name pos="center">IBM PC (Model 5150), CGA, 256K, Debugger</name>
<computer id="pc-cga-256k" name="IBM PC"/> <computer id="pc-cga-256k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), CGA, 256K</name> <name pos="center">IBM PC (Model 5150), CGA, 256K</name>
<computer id="pc-cga-256k" name="IBM PC"/> <computer id="pc-cga-256k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" width="1000px" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" width="1000px" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), CGA, 384K, Soft Keyboard</name> <name pos="center">IBM PC (Model 5150), CGA, 384K, Soft Keyboard</name>
<computer id="pc-cga-384k" name="IBM PC"/> <computer id="pc-cga-384k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), CGA, 64K</name> <name pos="center">IBM PC (Model 5150), CGA, 64K</name>
<computer id="pc-cga-64k" name="IBM PC"/> <computer id="pc-cga-64k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), CGA, 64K</name> <name pos="center">IBM PC (Model 5150), CGA, 64K</name>
<computer id="pc-cga-64k" name="IBM PC"/> <computer id="pc-cga-64k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" width="1000px" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" width="1000px" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), CGA, 64K</name> <name pos="center">IBM PC (Model 5150), CGA, 64K</name>
<computer id="pc-cga-64k" name="IBM PC"/> <computer id="pc-cga-64k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150) with Dual Displays</name> <name pos="center">IBM PC (Model 5150) with Dual Displays</name>
<computer id="pc-dual-64k" name="IBM PC"/> <computer id="pc-dual-64k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), MDA, 256K, Debugger</name> <name pos="center">IBM PC (Model 5150), MDA, 256K, Debugger</name>
<computer id="pc-mda-256k" name="IBM PC"/> <computer id="pc-mda-256k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), MDA, 256K</name> <name pos="center">IBM PC (Model 5150), MDA, 256K</name>
<computer id="pc-mda-64k" name="IBM PC"/> <computer id="pc-mda-64k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), MDA, 64K, Debugger</name> <name pos="center">IBM PC (Model 5150), MDA, 64K, Debugger</name>
<computer id="pc-mda-64k" name="IBM PC"/> <computer id="pc-mda-64k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), MDA, 64K</name> <name pos="center">IBM PC (Model 5150), MDA, 64K</name>
<computer id="pc-mda-64k" name="IBM PC"/> <computer id="pc-mda-64k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150), MDA, 64K, Soft Keyboard</name> <name pos="center">IBM PC (Model 5150), MDA, 64K, Soft Keyboard</name>
<computer id="pc-mda-64k" name="IBM PC"/> <computer id="pc-mda-64k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" width="1000px" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" width="1000px" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive</name>
<computer id="xt-cga-256k" name="IBM PC XT"/> <computer id="xt-cga-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive</name>
<computer id="xt-cga-256k" name="IBM PC XT"/> <computer id="xt-cga-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive</name>
<computer id="xt-cga-256k" name="IBM PC XT"/> <computer id="xt-cga-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" width="1000px" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" width="1000px" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive</name>
<computer id="xt-cga-256k" name="IBM PC XT"/> <computer id="xt-cga-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" width="1000px" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" width="1000px" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), CGA, 512K, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), CGA, 512K, 10Mb Drive</name>
<computer id="xt-cga-512k" name="IBM PC XT"/> <computer id="xt-cga-512k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" width="980px" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" width="980px" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive (Formatted)</name> <name pos="center">IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive (Formatted)</name>
<computer id="xt-cga-640k" name="IBM PC XT"/> <computer id="xt-cga-640k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive (Formatted)</name> <name pos="center">IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive (Formatted)</name>
<computer id="xt-cga-640k" name="IBM PC XT"/> <computer id="xt-cga-640k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" width="1000px" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" width="1000px" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive</name>
<computer id="xt-cga-640k" name="IBM PC XT"/> <computer id="xt-cga-640k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk</name> <name pos="center">IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk</name>
<computer id="xt-ega-256k" name="IBM PC XT"/> <computer id="xt-ega-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk</name> <name pos="center">IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk</name>
<computer id="xt-ega-256k" name="IBM PC XT"/> <computer id="xt-ega-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" width="680px" float="left" background="default"> <machine id="ibm5160" type="pcx86" border="1" width="680px" float="left" background="default">
<name pos="center">IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk</name> <name pos="center">IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk</name>
<computer id="xt-ega-640k" name="IBM PC XT"/> <computer id="xt-ega-640k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk (Formatted)</name>
<computer id="xt-ega-640k" name="IBM PC XT"/> <computer id="xt-ega-640k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk (Formatted)</name>
<computer id="xt-ega-640k" name="IBM PC XT"/> <computer id="xt-ega-640k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive</name>
<computer id="xt-mda-256k" name="IBM PC XT"/> <computer id="xt-mda-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" width="740px" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" width="740px" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive</name>
<computer id="xt188-mda-256k" name="IBM PC XT"/> <computer id="xt188-mda-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive</name>
<computer id="xt188-mda-256k" name="IBM PC XT"/> <computer id="xt188-mda-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive</name>
<computer id="xt-mda-256k" name="IBM PC XT"/> <computer id="xt-mda-256k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5160" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5160" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC XT (Model 5160), MDA, 64K, 10Mb Drive</name> <name pos="center">IBM PC XT (Model 5160), MDA, 64K, 10Mb Drive</name>
<computer id="xt-mda-64k" name="IBM PC XT"/> <computer id="xt-mda-64k" name="IBM PC XT"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display</name> <name pos="center">IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display</name>
<computer id="at-mda-640k" name="IBM PC AT" buswidth="24"/> <computer id="at-mda-640k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display</name> <name pos="center">IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display</name>
<computer id="at-mda-640k" name="IBM PC AT" buswidth="24"/> <computer id="at-mda-640k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk</name> <name pos="center">IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk</name>
<computer id="at-ega-1152k-rev1" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-1152k-rev1" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk</name> <name pos="center">IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk</name>
<computer id="at-ega-1152k-rev1" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-1152k-rev1" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170rev3" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170rev3" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-ega-1152k-rev3" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-1152k-rev3" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-ega-1152k-rev3" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-1152k-rev3" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-ega-1152k-rev3" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-1152k-rev3" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-ega-2048k" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-2048k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-ega-2048k" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-2048k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-ega-2048k" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-2048k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-ega-2048k" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-2048k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT, 640Kb RAM, 128K EGA</name> <name pos="center">IBM PC AT, 640Kb RAM, 128K EGA</name>
<computer id="at-ega-640k" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-640k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT, 640Kb RAM, 128K EGA</name> <name pos="center">IBM PC AT, 640Kb RAM, 128K EGA</name>
<computer id="at-ega-640k" name="IBM PC AT" buswidth="24"/> <computer id="at-ega-640k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display</name> <name pos="center">IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display</name>
<computer id="at-mda-640k" name="IBM PC AT" buswidth="24"/> <computer id="at-mda-640k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display</name> <name pos="center">IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display</name>
<computer id="at-mda-640k" name="IBM PC AT" buswidth="24"/> <computer id="at-mda-640k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), VGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), VGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-vga-2048k" name="IBM PC AT" buswidth="24"/> <computer id="at-vga-2048k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), VGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), VGA, 2Mb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-vga-2048k" name="IBM PC AT" buswidth="24"/> <computer id="at-vga-2048k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), VGA, 4Mb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), VGA, 4Mb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-vga-2048k" name="IBM PC AT" buswidth="24"/> <computer id="at-vga-2048k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5170" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5170" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC AT (8Mhz), VGA, 4Mb RAM, 20Mb Hard Disk (Formatted)</name> <name pos="center">IBM PC AT (8Mhz), VGA, 4Mb RAM, 20Mb Hard Disk (Formatted)</name>
<computer id="at-vga-2048k" name="IBM PC AT" buswidth="24"/> <computer id="at-vga-2048k" name="IBM PC AT" buswidth="24"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="att6300" type="pcx86" border="1" pos="center" background="default"> <machine id="att6300" type="pcx86" border="1" pos="center" background="default">
<name pos="center">AT&amp;T Personal Computer 6300 with Color Display</name> <name pos="center">AT&amp;T Personal Computer 6300 with Color Display</name>
<computer id="att6300-640k" name="AT&amp;T 6300"/> <computer id="att6300-640k" name="AT&amp;T 6300"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="att6300" type="pcx86" border="1" pos="center" background="default"> <machine id="att6300" type="pcx86" border="1" pos="center" background="default">
<name pos="center">AT&amp;T Personal Computer 6300 with Color Display</name> <name pos="center">AT&amp;T Personal Computer 6300 with Color Display</name>
<computer id="att6300-640k" name="MPC 1600"/> <computer id="att6300-640k" name="MPC 1600"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="mpc1600" type="pcx86" border="1" pos="center" background="default"> <machine id="mpc1600" type="pcx86" border="1" pos="center" background="default">
<name pos="center">Columbia Data Products MPC 1600 with Color Display</name> <name pos="center">Columbia Data Products MPC 1600 with Color Display</name>
<computer id="mpc1600-640k" name="MPC 1600"/> <computer id="mpc1600-640k" name="MPC 1600"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="mpc1600" type="pcx86" border="1" pos="center" background="default"> <machine id="mpc1600" type="pcx86" border="1" pos="center" background="default">
<name pos="center">Columbia Data Products MPC 1600 with Color Display</name> <name pos="center">Columbia Data Products MPC 1600 with Color Display</name>
<computer id="mpc1600-640k" name="MPC 1600"/> <computer id="mpc1600-640k" name="MPC 1600"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA, 20Mb Hard Disk (Formatted)</name> <name pos="center">COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA, 20Mb Hard Disk (Formatted)</name>
<computer id="deskpro386-ega-2048k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-ega-2048k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA, 20Mb Hard Disk (Formatted)</name> <name pos="center">COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA, 20Mb Hard Disk (Formatted)</name>
<computer id="deskpro386-ega-2048k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-ega-2048k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA, 20Mb Hard Disk (Formatted)</name> <name pos="center">COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA, 20Mb Hard Disk (Formatted)</name>
<computer id="deskpro386-ega-2048k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-ega-2048k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA, 20Mb Hard Disk (Formatted)</name> <name pos="center">COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA, 20Mb Hard Disk (Formatted)</name>
<computer id="deskpro386-ega-2048k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-ega-2048k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk</name> <name pos="center">COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk</name>
<computer id="deskpro386-vga-2048k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-vga-2048k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk</name> <name pos="center">COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk</name>
<computer id="deskpro386-vga-2048k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-vga-2048k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk (Formatted)</name> <name pos="center">COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk (Formatted)</name>
<computer id="deskpro386-vga-2048k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-vga-2048k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk</name> <name pos="center">COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk</name>
<computer id="deskpro386-vga-2048k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-vga-2048k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk (Formatted)</name> <name pos="center">COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk (Formatted)</name>
<computer id="deskpro386-vga-4096k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-vga-4096k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="deskpro386" type="pcx86" border="1" pos="center" background="default"> <machine id="deskpro386" type="pcx86" border="1" pos="center" background="default">
<name pos="center">COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk (Formatted)</name> <name pos="center">COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk (Formatted)</name>
<computer id="deskpro386-vga-4096k" name="COMPAQ DeskPro 386" buswidth="32"/> <computer id="deskpro386-vga-4096k" name="COMPAQ DeskPro 386" buswidth="32"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="ibm5150" type="pcx86" border="1" pos="center" background="default"> <machine id="ibm5150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">IBM PC (Model 5150) with Monochrome Display</name> <name pos="center">IBM PC (Model 5150) with Monochrome Display</name>
<computer id="pc-mda-64k" name="IBM PC"/> <computer id="pc-mda-64k" name="IBM PC"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="z150" type="pcx86" border="1" pos="center" background="default"> <machine id="z150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">Zenith Z-150 with Color Display</name> <name pos="center">Zenith Z-150 with Color Display</name>
<computer id="z150-640k" name="Z-150"/> <computer id="z150-640k" name="Z-150"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pcx86/1.37.1/machine.xsl"?>
<machine id="z150" type="pcx86" border="1" pos="center" background="default"> <machine id="z150" type="pcx86" border="1" pos="center" background="default">
<name pos="center">Zenith Z-150 with Color Display</name> <name pos="center">Zenith Z-150 with Color Display</name>
<computer id="z150-640k" name="Z-150"/> <computer id="z150-640k" name="Z-150"/>

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 KiB

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.37.0/machine.xsl"?> <?xml-stylesheet type="text/xsl" href="/versions/pdpjs/1.37.1/machine.xsl"?>
<machine id="testka10" type="pdp10" border="1" pos="center" background="default"> <machine id="testka10" type="pdp10" border="1" pos="center" background="default">
<name pos="center">PDP-10 (Model KA10) with Debugger</name> <name pos="center">PDP-10 (Model KA10) with Debugger</name>
<computer id="computer" busWidth="18"/> <computer id="computer" busWidth="18"/>

Some files were not shown because too many files have changed in this diff Show more