diff --git a/README.md b/README.md index e31830716..08093c713 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ It was added to the [JavaScript Machines](/docs/about/) project in Fall 2012, an The project includes the following web-based emulators: -* [PCjs](/docs/pcjs/): an IBM PC and PC-compatible emulator -* [PC8080](/modules/pc8080/): an 8080-based machine emulation module -* [C1Pjs](/docs/c1pjs/): a simulation of the 6502-based OSI Challenger 1P +* [PCjs](/docs/pcjs/), an IBM PC and PC-compatible emulator +* [PC8080](/modules/pc8080/), an 8080-based machine emulator +* [C1Pjs](/docs/c1pjs/), a simulation of the 6502-based OSI Challenger 1P PCjs first simulated the 4.77Mhz 8088-based IBM PC, and has steadily evolved to support more classic x86 machines, including the IBM PC XT, the 80286-based IBM PC AT, and the 80386-based COMPAQ DeskPro 386. PCjs fully supports -the original machine original ROMs, video cards, etc, and all machines run at their original speeds. +the original machine ROMs, video cards, etc, and all machines run at their original speeds. All the simulations are written entirely in [JavaScript](/modules/). No Flash, Java or other plugins are required. Supported browsers include modern versions of Chrome, Safari, Firefox, Internet Explorer (v9.0 and up), Edge, diff --git a/_config.yml b/_config.yml index 3ae5d1ad3..ec7bca9bf 100644 --- a/_config.yml +++ b/_config.yml @@ -32,7 +32,7 @@ gems: pcjs: domain: pcjs.org # whereas site.url is used for linking purposes, site.pcjs.domain is used for display purposes - version: 1.21.7 # IMPORTANT: keep pcjs.version in sync with package.json:version + version: 1.22.0 # IMPORTANT: keep pcjs.version in sync with package.json:version compiled: true # by default, the compiled pcjs.version scripts will be used (eg, pc.js or pc-dbg.js) pc_scripts: # if pcjs.compiled is false, the following scripts will be included instead, in the order listed - /modules/shared/lib/defines.js diff --git a/_posts/2016-04-30-the-intel-8080-cpu.md b/_posts/2016-04-30-the-intel-8080-cpu.md index 417f587bf..8f4006a6a 100644 --- a/_posts/2016-04-30-the-intel-8080-cpu.md +++ b/_posts/2016-04-30-the-intel-8080-cpu.md @@ -8,9 +8,9 @@ permalink: /blog/2016/04/30/ Or rather, introducing [PC8080](/modules/pc8080/), a new 8080-based machine emulator recently added to the PCjs Project. -Our first [8080 Test Machine](/devices/pc8080/machine/test/) loads a copy of the +Our first [8080 Test Machine](/devices/pc8080/machine/exerciser/) loads a copy of the [8080 Exerciser](https://web.archive.org/web/20151006085348/http://www.idb.me.uk/sunhillow/8080.html) -(specifically, [8080EX1](/devices/pc8080/rom/test/8080EX1.MAC)) and intercepts the exerciser's CP/M console +(specifically, [8080EX1](/devices/pc8080/rom/exerciser/8080EX1.MAC)) and intercepts the exerciser's CP/M console calls so that you can see its progress in the Control Panel window. It's a "headless" test machine (no keyboard or display), so that's all you get. @@ -46,11 +46,11 @@ The idea is to make [PC8080](/modules/pc8080/) sufficiently configurable so that [Space Invaders](/devices/pc8080/machine/invaders/)), as well as simpler terminal-based systems, like the CP/M-based systems of old. -In fact, as soon as Space Invaders is working, my next planned adaptation is a DEC VT100 terminal emulator (itself -an 8080-based machine) which can then be "wired up" to other PCjs machine simulations. This will not be yet-another -VT100-compatible emulation -- which, like 8080 emulators, has been done to death -- but rather a simulation -of the original VT100 hardware, building on [Adam Mayer's](https://github.com/phooky) work -[reverse-engineering the VT100](https://github.com/phooky/VT100-Hax). +In fact, as soon as [Space Invaders](/devices/pc8080/machine/invaders/) is working, my next planned adaptation +is a DEC VT100 terminal emulator (itself an 8080-based machine) which can then be "wired up" to other PCjs machine +simulations. This will not be yet-another VT100-compatible emulation -- which, like 8080 emulators, has been done to +death -- but rather a simulation of the original VT100 hardware, building on [Adam Mayer's](https://github.com/phooky) +work [reverse-engineering the VT100](https://github.com/phooky/VT100-Hax). *[@jeffpar](http://twitter.com/jeffpar)* *April 30, 2016* diff --git a/_posts/2016-05-04-the-sharpening.md b/_posts/2016-05-04-the-sharpening.md new file mode 100644 index 000000000..2053f1e21 --- /dev/null +++ b/_posts/2016-05-04-the-sharpening.md @@ -0,0 +1,95 @@ +--- +layout: post +title: The Sharpening +date: 2016-05-04 08:00:00 +permalink: /blog/2016/05/04/ +--- + +This was the week of The Sharpening. + +A while back, I updated most of the machines to use higher-resolution "screens". For example, a typical +[EGA video configuration](/devices/pc/video/ibm/ega/1984-09-13/128kb-autolockfs.xml) now specifies a *screenWidth* +of 1280 and *screenHeight* of 700, dimensions which are exactly twice the standard EGA resolution. + +That change had no effect on the machine's operation, but it did improve the machine's appearance, because +most people are using much higher resolution monitors today, so by using a higher-resolution "screen" (canvas), +less interpolation is happening when a machine's screen image is scaled up to fill your browser window. + +The amount of scaling *also* depends on whether the machine allows itself to be stretched to fill the browser window. +For example, this [machine](/devices/pc/machine/5160/ega/640kb/array/machine.xml) (used by the +[EGA Machine Array Demo](/devices/pc/machine/5160/ega/640kb/array/)) is limited to an overall *width* of 680 pixels, +no matter how large you make your browser window: + +```xml + +``` + +but most machines don't specify a (maximum) overall width, so their screen canvas is allowed to stretch far beyond +the initial *screenWidth* and *screenHeight*, thanks to some additional CSS settings. + +Larger screens mean less interpolation, which is a good thing if you want the screens to look less "fuzzy." +However, interpolation also happens at a deeper level, because internally, PCjs uses two canvases to move pixels +from the machine's frame buffer to your browser: the screen canvas, which I've already discussed, and another +canvas called the *buffer* canvas, where changes to the machine's frame buffer are, um, buffered. + +The *buffer* canvas has the same dimensions as the machine's frame buffer, whereas the *screen* canvas +has generally higher dimensions (as explained above), which your browser may then be stretching to even higher +dimensions, depending on your monitor resolution and browser size. + +The differential between the *buffer* canvas and *screen* canvas is where additional interpolation (fuzziness) +creeps in. That is where The Sharpening now occurs. + +All the browsers I've tested so far (Chrome, Firefox, and Safari) support a +[Canvas](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API) +[Context](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D) property named +[imageSmoothingEnabled](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/imageSmoothingEnabled), +which eliminates much of the fuzziness that would occur when copying pixels from the lower-resolution *buffer* canvas +to the higher-resolution *screen* canvas. + +So I've added a new [Video](/docs/pcjs/video/) property named *smoothing* that can be set to "true" or "false", +and I've set it to "false" for most machines in the project. If *smoothing* is not set, your browser continues to +use its default interpolation method. + +{% include screenshot.html src="/blog/images/si1978-fuzzier.png" width="339" height="388" title="Space Invaders (Fuzzier)" link="/devices/pc8080/machine/invaders/?smoothing=true" %} +{% include screenshot.html src="/blog/images/si1978-sharper.png" width="339" height="388" title="Space Invaders (Sharper)" link="/devices/pc8080/machine/invaders/?smoothing=false" %} + +For some people, this might be a matter of taste, because less fuzziness necessarily means more pixelation (ie, you +can see individual pixels more clearly), which becomes more noticeable when switching a machine **Full Screen**. +So I've also added a URL *smoothing* parameter you can use to override a machine's default setting; eg: + + http://www.pcjs.org/devices/pc8080/machine/invaders/?smoothing=true + +See for yourself, by clicking on each of the [Space Invaders](/devices/pc8080/machine/invaders/) images above and +then clicking the **Full Screen** button; both images link to the same machine, but left one enables image smoothing, +while the right one does not. + +Aspect Ratio +--- + +The *smoothing* property joins another recent [Video](/docs/pcjs/video/) property, *aspect*, that was added in a +[release](https://github.com/jeffpar/pcjs/releases/tag/v1.21.5) last month. + +To recap, aspect ratio is display width divided by display height, but the choice of aspect ratio is complicated by +the fact that none of the early IBM video card/monitor combinations (with the exception of the VGA) displayed square +pixels, and (with the exception of the MDA) they could display text and graphics at a variety of resolutions. + +So, for those users who either 1) don't like the aspect ratios that PCjs has chosen, or 2) just want to squeeze or +stretch a machine's screen a bit more, there is now an *aspect* parameter you can append to the URL of any page +containing one or more PCjs machines. + +For example: + + http://www.pcjs.org/disks/pc/dos/ibm/1.00/?aspect=2.0 + +will modify the height of the machine's screen to conform to the requested aspect ratio of 2.0. The screen should still +be responsive to any browser resizing while still retaining that aspect ratio. + +--- + +That's all for now. Work continues on the new [PC8080](/modules/pc8080/) emulator and the +[Space Invaders](/devices/pc8080/machine/invaders/) test machine. More on that later, when it's finished. + +Until then, May the 4th be with you! + +*[@jeffpar](http://twitter.com/jeffpar)* +*May 4, 2016* diff --git a/apps/pc/1981/visicalc/manifest.xml b/apps/pc/1981/visicalc/manifest.xml index 4823e9b66..07c705ebb 100644 --- a/apps/pc/1981/visicalc/manifest.xml +++ b/apps/pc/1981/visicalc/manifest.xml @@ -1,5 +1,5 @@ - + VisiCalc @@ -13,7 +13,7 @@ Lotus Development - Demo: VisiCalc (1981) + VisiCalc (1981) VC.COM README.md VisiCalc License diff --git a/apps/pc/1982/esuite/manifest.xml b/apps/pc/1982/esuite/manifest.xml index 762c444d8..258be8afa 100644 --- a/apps/pc/1982/esuite/manifest.xml +++ b/apps/pc/1982/esuite/manifest.xml @@ -1,5 +1,5 @@ - + Executive Suite @@ -9,7 +9,7 @@ 1982 - Demo: Executive Suite (1982) + Executive Suite (1982) ESUITE.COM GAME.DAT MobyGames diff --git a/apps/pc/1985/rogue/manifest.xml b/apps/pc/1985/rogue/manifest.xml index a49221705..c6bf59daa 100644 --- a/apps/pc/1985/rogue/manifest.xml +++ b/apps/pc/1985/rogue/manifest.xml @@ -1,5 +1,5 @@ - + Rogue @@ -13,7 +13,7 @@ Jon Lane Michael Toy - Demo: Rogue (1985) + Rogue (1985) MKOPT.EXE ROGUE.COM ROGUE.EXE diff --git a/apps/pc/1987/thinktank/manifest.xml b/apps/pc/1987/thinktank/manifest.xml index e7d2232a6..8eb8664e4 100644 --- a/apps/pc/1987/thinktank/manifest.xml +++ b/apps/pc/1987/thinktank/manifest.xml @@ -1,5 +1,5 @@ - + ThinkTank 2.41NP @@ -8,7 +8,7 @@ Living Videotext September 25, 1987 - Demo: ThinkTank (1987) + ThinkTank (1987) AUTOEXEC.BAT READ_ME.DB READ_ME.SAV diff --git a/apps/pc/1988/moria/manifest.xml b/apps/pc/1988/moria/manifest.xml index bc0771df1..28f8a2925 100644 --- a/apps/pc/1988/moria/manifest.xml +++ b/apps/pc/1988/moria/manifest.xml @@ -1,5 +1,5 @@ - + The Dungeons of Moria 4.872 @@ -15,7 +15,7 @@ MSDOS port - Demo: Moria 4.872 (1988) + Moria 4.872 (1988) CONFIG.DOC GOD MADNESS1 diff --git a/apps/pc/1992/moria/manifest.xml b/apps/pc/1992/moria/manifest.xml index 23d6e182b..f499722e0 100644 --- a/apps/pc/1992/moria/manifest.xml +++ b/apps/pc/1992/moria/manifest.xml @@ -1,5 +1,5 @@ - + The Dungeons of Moria 5.5 @@ -93,7 +93,7 @@ Macintosh port for Think C - Demo: Moria 5.5 (1992) + Moria 5.5 (1992) EXP.DOC MORIA.CNF MORIA1.TXT diff --git a/blog/README.md b/blog/README.md index 0527856a9..04146f85b 100644 --- a/blog/README.md +++ b/blog/README.md @@ -6,7 +6,8 @@ menu_order: 2 permalink: /blog/ --- -Keep tabs on the [PCjs Project](https://github.com/jeffpar/pcjs) on GitHub: [Releases](https://github.com/jeffpar/pcjs/releases), [Issues](https://github.com/jeffpar/pcjs/issues), +Keep tabs on the [PCjs Project](https://github.com/jeffpar/pcjs) on GitHub: +[Releases](https://github.com/jeffpar/pcjs/releases), [Issues](https://github.com/jeffpar/pcjs/issues), and [Commits](https://github.com/jeffpar/pcjs/commits/master). For random musings about PCjs, web technologies, old hardware and software, and more, read on. diff --git a/blog/images/si1978-fuzzier.png b/blog/images/si1978-fuzzier.png new file mode 100644 index 000000000..cb63591f9 Binary files /dev/null and b/blog/images/si1978-fuzzier.png differ diff --git a/blog/images/si1978-sharper.png b/blog/images/si1978-sharper.png new file mode 100644 index 000000000..ef0a952ab Binary files /dev/null and b/blog/images/si1978-sharper.png differ diff --git a/devices/README.md b/devices/README.md index 21ccdbb68..639d011be 100644 --- a/devices/README.md +++ b/devices/README.md @@ -1,6 +1,8 @@ --- layout: page title: Device Configurations +menu_title: Devices +menu_order: 3 permalink: /devices/ redirect_from: - /configs/ @@ -11,8 +13,9 @@ Device Configurations All PCjs machines are built from the following collections of devices: -* [IBM PC Devices](pc/) -* [Challenger 1P Devices](c1p/) +* 6502-based Devices (e.g., [Challenger 1P](c1p/machine/)) +* [8080-based Devices](pc8080/) (e.g., [Space Invaders](pc8080/machine/invaders/)) +* [8086-based Devices](pc/) (e.g., [IBM PC, including 80286 and 80386-based compatibles](pc/machine/)) These devices are user-installable components that you would typically find in a real personal computer, such as keyboards, disk controllers with one or more disk drives, video cards, etc. diff --git a/devices/c1p/machine/32kb/machine.xml b/devices/c1p/machine/32kb/machine.xml index dcf88ebf2..bb8f0636e 100644 --- a/devices/c1p/machine/32kb/machine.xml +++ b/devices/c1p/machine/32kb/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (32Kb) with Disk Support diff --git a/devices/c1p/machine/8kb/all/debugger/machine.xml b/devices/c1p/machine/8kb/all/debugger/machine.xml index 13b5837b4..ad45635ae 100644 --- a/devices/c1p/machine/8kb/all/debugger/machine.xml +++ b/devices/c1p/machine/8kb/all/debugger/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (8Kb, Additional Software) diff --git a/devices/c1p/machine/8kb/all/machine.xml b/devices/c1p/machine/8kb/all/machine.xml index cb8b1d88f..01dbaabe9 100644 --- a/devices/c1p/machine/8kb/all/machine.xml +++ b/devices/c1p/machine/8kb/all/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (8Kb, Additional Software) diff --git a/devices/c1p/machine/8kb/array/machine.xml b/devices/c1p/machine/8kb/array/machine.xml index 3bb88c9a6..dadccba83 100644 --- a/devices/c1p/machine/8kb/array/machine.xml +++ b/devices/c1p/machine/8kb/array/machine.xml @@ -1,5 +1,5 @@ - + Challenger 1P (8Kb) "Server Array" diff --git a/devices/c1p/machine/8kb/large/debugger/machine.xml b/devices/c1p/machine/8kb/large/debugger/machine.xml index 40b505061..bce252969 100644 --- a/devices/c1p/machine/8kb/large/debugger/machine.xml +++ b/devices/c1p/machine/8kb/large/debugger/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (8Kb) with Debugger diff --git a/devices/c1p/machine/8kb/large/machine.xml b/devices/c1p/machine/8kb/large/machine.xml index ca63fed88..f0b32aeb7 100644 --- a/devices/c1p/machine/8kb/large/machine.xml +++ b/devices/c1p/machine/8kb/large/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (circa 1978) diff --git a/devices/c1p/machine/8kb/small/machine.xml b/devices/c1p/machine/8kb/small/machine.xml index 34d80df60..c234edd8f 100644 --- a/devices/c1p/machine/8kb/small/machine.xml +++ b/devices/c1p/machine/8kb/small/machine.xml @@ -1,5 +1,5 @@ - + diff --git a/devices/pc/README.md b/devices/pc/README.md index 48c831286..98b7e3a5d 100644 --- a/devices/pc/README.md +++ b/devices/pc/README.md @@ -9,15 +9,16 @@ redirect_from: IBM PC Device Configurations --- -[PC Machines](machine/) are built from a collection of devices, including: +All our [IBM PC Machines](machine/) are built from a collection of devices, including: -* CPU +* CPU (e.g., 8088, 80286, 80386) * RAM * [ROMs](rom/) +* ChipSets (e.g., 8259, 8253, 8237) * [Keyboards](keyboard/) * [Video Adapters](video/) -* Floppy Disk Controllers -* Hard Disk (Fixed Disk) Controllers +* Floppy Drive Controllers +* Hard Drive Controllers * [Control Panels](panel/) Each of those devices can be configured in multiple ways, and some support external UI controls. @@ -26,29 +27,32 @@ For example, the IBM PC Keyboard component supports different keyboard models (e and each of those models can also be configured to have dedicated buttons for selected key combinations, or even entire keyboard layouts. -Complete machine configurations are constructed from those devices. A machine configuration is a single XML file -that lists all the device components to be used. A machine XML file can choose to configure every device itself, +Complete machine configurations are constructed from those devices. A Machine Configuration is a single XML file +that lists all the device components to be used. A Machine XML file can choose to configure every device itself, or it can include pre-configured device XML files, such as those provided above or elsewhere. -For example, here's what the machine located at -[/devices/pc/machine/5150/mda/64kb/machine.xml](/devices/pc/machine/5150/mda/64kb/machine.xml) looks like: +Here's an example of [IBM 5150](/devices/pc/machine/5150/mda/64kb/) +[XML](/devices/pc/machine/5150/mda/64kb/machine.xml): - - IBM PC (Model 5150) with Monochrome Display - - - - - +```xml + + IBM PC (Model 5150) with Monochrome Display + + + + + +``` -All the devices are fully configured within the XML file, except for the [Video](/docs/pcjs/video/), -[Keyboard](/docs/pcjs/keyboard/), and [Floppy Disk Controller (FDC)](/docs/pcjs/fdc/) components, which are defined -in separate XML files. +In this example, all the devices are fully configured within the machine XML file, except for the +[Video](/docs/pcjs/video/) [XML](/devices/pc/video/ibm/mda/ibm-mda.xml), +[Floppy Disk Controller (FDC)](/docs/pcjs/fdc/) [XML](/disks/pc/compiled/samples.xml), and +[Keyboard](/docs/pcjs/keyboard/) [XML](/devices/pc/keyboard/us83-buttons-arrows.xml). diff --git a/devices/pc/machine/5150/cga/384kb/softkbd/machine.xml b/devices/pc/machine/5150/cga/384kb/softkbd/machine.xml index d7b702bf1..f03a01a9c 100644 --- a/devices/pc/machine/5150/cga/384kb/softkbd/machine.xml +++ b/devices/pc/machine/5150/cga/384kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), CGA, 384K diff --git a/devices/pc/machine/5150/cga/64kb/donkey/debugger/machine.xml b/devices/pc/machine/5150/cga/64kb/donkey/debugger/machine.xml index 76ffe26dc..510eb9234 100644 --- a/devices/pc/machine/5150/cga/64kb/donkey/debugger/machine.xml +++ b/devices/pc/machine/5150/cga/64kb/donkey/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), CGA, 64K diff --git a/devices/pc/machine/5150/cga/64kb/donkey/machine.xml b/devices/pc/machine/5150/cga/64kb/donkey/machine.xml index d217906ed..2b1f478a0 100644 --- a/devices/pc/machine/5150/cga/64kb/donkey/machine.xml +++ b/devices/pc/machine/5150/cga/64kb/donkey/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), CGA, 64K diff --git a/devices/pc/machine/5150/cga/64kb/softkbd/machine.xml b/devices/pc/machine/5150/cga/64kb/softkbd/machine.xml index 3fafd4c9b..dfe4dc5e1 100644 --- a/devices/pc/machine/5150/cga/64kb/softkbd/machine.xml +++ b/devices/pc/machine/5150/cga/64kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), CGA, 64K diff --git a/devices/pc/machine/5150/dual/64kb/machine.xml b/devices/pc/machine/5150/dual/64kb/machine.xml index 71d923220..a7e4e5211 100644 --- a/devices/pc/machine/5150/dual/64kb/machine.xml +++ b/devices/pc/machine/5150/dual/64kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) with Dual Displays diff --git a/devices/pc/machine/5150/mda/64kb/debugger/machine.xml b/devices/pc/machine/5150/mda/64kb/debugger/machine.xml index f2439dc7c..77f4e7655 100644 --- a/devices/pc/machine/5150/mda/64kb/debugger/machine.xml +++ b/devices/pc/machine/5150/mda/64kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) with Monochrome Display diff --git a/devices/pc/machine/5150/mda/64kb/machine.xml b/devices/pc/machine/5150/mda/64kb/machine.xml index eb7ce184c..4429cf75a 100644 --- a/devices/pc/machine/5150/mda/64kb/machine.xml +++ b/devices/pc/machine/5150/mda/64kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) with Monochrome Display diff --git a/devices/pc/machine/5150/mda/64kb/softkbd/machine.xml b/devices/pc/machine/5150/mda/64kb/softkbd/machine.xml index c7c2ac1e1..763911a99 100644 --- a/devices/pc/machine/5150/mda/64kb/softkbd/machine.xml +++ b/devices/pc/machine/5150/mda/64kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), MDA, 64K diff --git a/devices/pc/machine/5160/cga/256kb/array/machine.xml b/devices/pc/machine/5160/cga/256kb/array/machine.xml index b8f7dd18a..2b0c805c6 100644 --- a/devices/pc/machine/5160/cga/256kb/array/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/array/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/256kb/demo/debugger/machine.xml b/devices/pc/machine/5160/cga/256kb/demo/debugger/machine.xml index 61436e090..6a39e081a 100644 --- a/devices/pc/machine/5160/cga/256kb/demo/debugger/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/demo/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/256kb/demo/machine.xml b/devices/pc/machine/5160/cga/256kb/demo/machine.xml index aa47dd1dd..0f57d9320 100644 --- a/devices/pc/machine/5160/cga/256kb/demo/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/demo/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/256kb/softkbd/machine.xml b/devices/pc/machine/5160/cga/256kb/softkbd/machine.xml index f4fc83870..6c4deebf6 100644 --- a/devices/pc/machine/5160/cga/256kb/softkbd/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/256kb/win101/debugger/machine.xml b/devices/pc/machine/5160/cga/256kb/win101/debugger/machine.xml index a744db7f4..8bd426a82 100644 --- a/devices/pc/machine/5160/cga/256kb/win101/debugger/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/win101/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160) running Windows 1.01 diff --git a/devices/pc/machine/5160/cga/256kb/win101/machine.xml b/devices/pc/machine/5160/cga/256kb/win101/machine.xml index 07e7a62cd..5d44127c7 100644 --- a/devices/pc/machine/5160/cga/256kb/win101/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/win101/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160) running Windows 1.01 diff --git a/devices/pc/machine/5160/cga/256kb/win101/softkbd/machine.xml b/devices/pc/machine/5160/cga/256kb/win101/softkbd/machine.xml index 32b26a1b8..2cbe9bc4a 100644 --- a/devices/pc/machine/5160/cga/256kb/win101/softkbd/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/win101/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256K, Windows 1.01 diff --git a/devices/pc/machine/5160/cga/512kb/win101/softkbd/machine.xml b/devices/pc/machine/5160/cga/512kb/win101/softkbd/machine.xml index 18f9442f3..49a14614a 100644 --- a/devices/pc/machine/5160/cga/512kb/win101/softkbd/machine.xml +++ b/devices/pc/machine/5160/cga/512kb/win101/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 512K, WIN101 diff --git a/devices/pc/machine/5160/cga/640kb/debugger/machine.xml b/devices/pc/machine/5160/cga/640kb/debugger/machine.xml index 87fb7acb6..21a0e7002 100644 --- a/devices/pc/machine/5160/cga/640kb/debugger/machine.xml +++ b/devices/pc/machine/5160/cga/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/640kb/machine.xml b/devices/pc/machine/5160/cga/640kb/machine.xml index 9677bdc6d..f52598a96 100644 --- a/devices/pc/machine/5160/cga/640kb/machine.xml +++ b/devices/pc/machine/5160/cga/640kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/640kb/softkbd/machine.xml b/devices/pc/machine/5160/cga/640kb/softkbd/machine.xml index cc0033d9f..c5d2c0d5b 100644 --- a/devices/pc/machine/5160/cga/640kb/softkbd/machine.xml +++ b/devices/pc/machine/5160/cga/640kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive diff --git a/devices/pc/machine/5160/ega/256kb/debugger/machine.xml b/devices/pc/machine/5160/ega/256kb/debugger/machine.xml index ceb3fd6f8..ebdcd2a05 100644 --- a/devices/pc/machine/5160/ega/256kb/debugger/machine.xml +++ b/devices/pc/machine/5160/ega/256kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/ega/256kb/machine.xml b/devices/pc/machine/5160/ega/256kb/machine.xml index e4f9485f6..3a058e590 100644 --- a/devices/pc/machine/5160/ega/256kb/machine.xml +++ b/devices/pc/machine/5160/ega/256kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/ega/640kb/array/machine.xml b/devices/pc/machine/5160/ega/640kb/array/machine.xml index d4dad71a8..5a828db29 100644 --- a/devices/pc/machine/5160/ega/640kb/array/machine.xml +++ b/devices/pc/machine/5160/ega/640kb/array/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/ega/640kb/debugger/machine.xml b/devices/pc/machine/5160/ega/640kb/debugger/machine.xml index 9b3e966b3..91922de55 100644 --- a/devices/pc/machine/5160/ega/640kb/debugger/machine.xml +++ b/devices/pc/machine/5160/ega/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/ega/640kb/machine.xml b/devices/pc/machine/5160/ega/640kb/machine.xml index d2295c63b..b698187a2 100644 --- a/devices/pc/machine/5160/ega/640kb/machine.xml +++ b/devices/pc/machine/5160/ega/640kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/mda/256kb/debugger/machine.xml b/devices/pc/machine/5160/mda/256kb/debugger/machine.xml index d6f6ebe51..5b43d97b7 100644 --- a/devices/pc/machine/5160/mda/256kb/debugger/machine.xml +++ b/devices/pc/machine/5160/mda/256kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/mda/256kb/fake188/debugger/machine.xml b/devices/pc/machine/5160/mda/256kb/fake188/debugger/machine.xml index d8aa974dd..57f3c9268 100644 --- a/devices/pc/machine/5160/mda/256kb/fake188/debugger/machine.xml +++ b/devices/pc/machine/5160/mda/256kb/fake188/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/mda/256kb/fake188/machine.xml b/devices/pc/machine/5160/mda/256kb/fake188/machine.xml index b857fcbb7..37cf9ffff 100644 --- a/devices/pc/machine/5160/mda/256kb/fake188/machine.xml +++ b/devices/pc/machine/5160/mda/256kb/fake188/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/mda/256kb/machine.xml b/devices/pc/machine/5160/mda/256kb/machine.xml index 2aaf84fcd..eb3306917 100644 --- a/devices/pc/machine/5160/mda/256kb/machine.xml +++ b/devices/pc/machine/5160/mda/256kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/mda/64kb/softkbd/machine.xml b/devices/pc/machine/5160/mda/64kb/softkbd/machine.xml index 5563af6ac..6a4319404 100644 --- a/devices/pc/machine/5160/mda/64kb/softkbd/machine.xml +++ b/devices/pc/machine/5160/mda/64kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 64K, 10Mb Drive diff --git a/devices/pc/machine/5170/cga/640kb/rev3/debugger/machine.xml b/devices/pc/machine/5170/cga/640kb/rev3/debugger/machine.xml index 446f86437..5f5122c00 100644 --- a/devices/pc/machine/5170/cga/640kb/rev3/debugger/machine.xml +++ b/devices/pc/machine/5170/cga/640kb/rev3/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display diff --git a/devices/pc/machine/5170/cga/640kb/rev3/machine.xml b/devices/pc/machine/5170/cga/640kb/rev3/machine.xml index 20cca5fa8..e5aa32811 100644 --- a/devices/pc/machine/5170/cga/640kb/rev3/machine.xml +++ b/devices/pc/machine/5170/cga/640kb/rev3/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display diff --git a/devices/pc/machine/5170/ega/1152kb/rev1/debugger/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev1/debugger/machine.xml index 57ffae888..1e4527757 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev1/debugger/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev1/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/1152kb/rev1/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev1/machine.xml index fac4c32c5..e2f36b4a5 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev1/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev1/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml index ceed065e1..a42135c41 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/1152kb/rev3/debugger/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev3/debugger/machine.xml index 5fc57bec0..672a3dcb9 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev3/debugger/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev3/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/1152kb/rev3/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev3/machine.xml index bc10dd981..854408c66 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev3/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev3/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml b/devices/pc/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml index 65d3c78b2..d14d89eca 100644 --- a/devices/pc/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml +++ b/devices/pc/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/2048kb/rev3/debugger/machine.xml b/devices/pc/machine/5170/ega/2048kb/rev3/debugger/machine.xml index 71b864f9a..ecea26ed8 100644 --- a/devices/pc/machine/5170/ega/2048kb/rev3/debugger/machine.xml +++ b/devices/pc/machine/5170/ega/2048kb/rev3/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/2048kb/rev3/machine.xml b/devices/pc/machine/5170/ega/2048kb/rev3/machine.xml index cb3b62c9b..3041629b2 100644 --- a/devices/pc/machine/5170/ega/2048kb/rev3/machine.xml +++ b/devices/pc/machine/5170/ega/2048kb/rev3/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/640kb/rev1/debugger/machine.xml b/devices/pc/machine/5170/ega/640kb/rev1/debugger/machine.xml index 7a31dffc7..beb0a15ef 100644 --- a/devices/pc/machine/5170/ega/640kb/rev1/debugger/machine.xml +++ b/devices/pc/machine/5170/ega/640kb/rev1/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT, 128K EGA, 640Kb RAM diff --git a/devices/pc/machine/5170/ega/640kb/rev1/machine.xml b/devices/pc/machine/5170/ega/640kb/rev1/machine.xml index b9424fbf4..1e1ce146b 100644 --- a/devices/pc/machine/5170/ega/640kb/rev1/machine.xml +++ b/devices/pc/machine/5170/ega/640kb/rev1/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT, 128K EGA, 640Kb RAM diff --git a/devices/pc/machine/5170/mda/640kb/rev3/debugger/machine.xml b/devices/pc/machine/5170/mda/640kb/rev3/debugger/machine.xml index 7a999f84c..5a3bbe9aa 100644 --- a/devices/pc/machine/5170/mda/640kb/rev3/debugger/machine.xml +++ b/devices/pc/machine/5170/mda/640kb/rev3/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display diff --git a/devices/pc/machine/5170/mda/640kb/rev3/machine.xml b/devices/pc/machine/5170/mda/640kb/rev3/machine.xml index 9997eea45..900cb11d6 100644 --- a/devices/pc/machine/5170/mda/640kb/rev3/machine.xml +++ b/devices/pc/machine/5170/mda/640kb/rev3/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display diff --git a/devices/pc/machine/5170/vga/2048kb/debugger/machine.xml b/devices/pc/machine/5170/vga/2048kb/debugger/machine.xml index 515ac40fd..55cac9255 100644 --- a/devices/pc/machine/5170/vga/2048kb/debugger/machine.xml +++ b/devices/pc/machine/5170/vga/2048kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 2Mb, 20Mb Hard Disk) with VGA Display diff --git a/devices/pc/machine/5170/vga/2048kb/machine.xml b/devices/pc/machine/5170/vga/2048kb/machine.xml index bedcef70e..011cfd11b 100644 --- a/devices/pc/machine/5170/vga/2048kb/machine.xml +++ b/devices/pc/machine/5170/vga/2048kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 2Mb, 20Mb Hard Disk) with VGA Display diff --git a/devices/pc/machine/5170/vga/4096kb/debugger/machine.xml b/devices/pc/machine/5170/vga/4096kb/debugger/machine.xml index 588d74615..ca2fb00e6 100644 --- a/devices/pc/machine/5170/vga/4096kb/debugger/machine.xml +++ b/devices/pc/machine/5170/vga/4096kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 4Mb, 20Mb Hard Disk) with VGA Display diff --git a/devices/pc/machine/5170/vga/4096kb/machine.xml b/devices/pc/machine/5170/vga/4096kb/machine.xml index c2c401114..a9bb7a057 100644 --- a/devices/pc/machine/5170/vga/4096kb/machine.xml +++ b/devices/pc/machine/5170/vga/4096kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), VGA, 4Mb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/README.md b/devices/pc/machine/README.md index abed8b1a2..3c33ef713 100644 --- a/devices/pc/machine/README.md +++ b/devices/pc/machine/README.md @@ -1,8 +1,6 @@ --- layout: page title: IBM PC Machine Configurations -menu_title: Machines -menu_order: 6 permalink: /devices/pc/machine/ redirect_from: - /configs/pc/machines/ @@ -11,7 +9,7 @@ redirect_from: IBM PC Machine Configurations --- -[PC Devices](/devices/pc/) are the building blocks of these early [IBM PC Machines](#ibm-pc-machines): +PCjs supports these early [IBM PC Machines](#ibm-pc-machines): * [IBM PC](/devices/pc/machine/5150/) (Model 5150) * [IBM PC XT](/devices/pc/machine/5160/) (Model 5160) diff --git a/devices/pc/machine/att/6300/cga/640kb/debugger/machine.xml b/devices/pc/machine/att/6300/cga/640kb/debugger/machine.xml index b277c950f..5c7eac880 100644 --- a/devices/pc/machine/att/6300/cga/640kb/debugger/machine.xml +++ b/devices/pc/machine/att/6300/cga/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + AT&T Personal Computer 6300 with Color Display diff --git a/devices/pc/machine/att/6300/cga/640kb/machine.xml b/devices/pc/machine/att/6300/cga/640kb/machine.xml index 367d32181..84ed445ba 100644 --- a/devices/pc/machine/att/6300/cga/640kb/machine.xml +++ b/devices/pc/machine/att/6300/cga/640kb/machine.xml @@ -1,5 +1,5 @@ - + AT&T Personal Computer 6300 with Color Display diff --git a/devices/pc/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml b/devices/pc/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml index a1fe2f940..494d3757d 100644 --- a/devices/pc/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml +++ b/devices/pc/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + Columbia Data Products MPC 1600 with Color Display diff --git a/devices/pc/machine/cdp/mpc1600/cga/640kb/machine.xml b/devices/pc/machine/cdp/mpc1600/cga/640kb/machine.xml index 56b40c8d1..1fb0a7e3a 100644 --- a/devices/pc/machine/cdp/mpc1600/cga/640kb/machine.xml +++ b/devices/pc/machine/cdp/mpc1600/cga/640kb/machine.xml @@ -1,5 +1,5 @@ - + Columbia Data Products MPC 1600 with Color Display diff --git a/devices/pc/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml index 435ec2151..414fe4f72 100644 --- a/devices/pc/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA diff --git a/devices/pc/machine/compaq/deskpro386/ega/2048kb/machine.xml b/devices/pc/machine/compaq/deskpro386/ega/2048kb/machine.xml index dc11d4e2d..04e9a89e1 100644 --- a/devices/pc/machine/compaq/deskpro386/ega/2048kb/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/ega/2048kb/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA diff --git a/devices/pc/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml index 971a90a84..91be37b89 100644 --- a/devices/pc/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA diff --git a/devices/pc/machine/compaq/deskpro386/ega/4096kb/machine.xml b/devices/pc/machine/compaq/deskpro386/ega/4096kb/machine.xml index c251be56a..784706424 100644 --- a/devices/pc/machine/compaq/deskpro386/ega/4096kb/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/ega/4096kb/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA diff --git a/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml b/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml index 972ccb519..5a7a3a986 100644 --- a/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml index a494dcac2..b6aa6858e 100644 --- a/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml index cea7a8303..d7c446607 100644 --- a/devices/pc/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/vga/2048kb/machine.xml b/devices/pc/machine/compaq/deskpro386/vga/2048kb/machine.xml index 860402968..15ff962a1 100644 --- a/devices/pc/machine/compaq/deskpro386/vga/2048kb/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/vga/2048kb/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml index 90e780935..8748944db 100644 --- a/devices/pc/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/vga/4096kb/machine.xml b/devices/pc/machine/compaq/deskpro386/vga/4096kb/machine.xml index 28c217755..89b407f6a 100644 --- a/devices/pc/machine/compaq/deskpro386/vga/4096kb/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/vga/4096kb/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/custom/machine.xml b/devices/pc/machine/custom/machine.xml index 6e2200196..1b17981b0 100644 --- a/devices/pc/machine/custom/machine.xml +++ b/devices/pc/machine/custom/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) with Monochrome Display diff --git a/devices/pc/machine/zenith/z150/cga/640kb/debugger/machine.xml b/devices/pc/machine/zenith/z150/cga/640kb/debugger/machine.xml index c56d4fe48..2d1a34ce6 100644 --- a/devices/pc/machine/zenith/z150/cga/640kb/debugger/machine.xml +++ b/devices/pc/machine/zenith/z150/cga/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + Zenith Z-150 with Color Display diff --git a/devices/pc/machine/zenith/z150/cga/640kb/machine.xml b/devices/pc/machine/zenith/z150/cga/640kb/machine.xml index 386900458..9687d8eb4 100644 --- a/devices/pc/machine/zenith/z150/cga/640kb/machine.xml +++ b/devices/pc/machine/zenith/z150/cga/640kb/machine.xml @@ -1,5 +1,5 @@ - + Zenith Z-150 with Color Display diff --git a/devices/pc/video/cdp/cga/cdp-cga.xml b/devices/pc/video/cdp/cga/cdp-cga.xml index d94d7c51a..6b1020afa 100644 --- a/devices/pc/video/cdp/cga/cdp-cga.xml +++ b/devices/pc/video/cdp/cga/cdp-cga.xml @@ -1,5 +1,5 @@ -