And more PCjs/PCx86 disambiguation

This commit is contained in:
Jeff Parsons 2016-05-18 00:03:07 -07:00
commit 2629e48bdf
57 changed files with 200 additions and 134 deletions

View file

@ -3,8 +3,9 @@ layout: page
title: OSI Challenger 1P (32Kb) with Disk Support
permalink: /devices/c1p/machine/32kb/
machines:
- type: c1p-dbg
- type: c1p
id: c1p32kb
debugger: true
---
{% include machine.html id="c1p32kb" %}

View file

@ -3,8 +3,9 @@ layout: page
title: OSI Challenger 1P (8Kb) with Additional Software
permalink: /devices/c1p/machine/8kb/all/debugger/
machines:
- type: c1p-dbg
- type: c1p
id: c1p8kb
debugger: true
---
{% include machine.html id="c1p8kb" %}

View file

@ -3,8 +3,9 @@ layout: page
title: OSI Challenger 1P (8Kb) with Large Display
permalink: /devices/c1p/machine/8kb/large/debugger/
machines:
- type: c1p-dbg
- type: c1p
id: c1p8kb
debugger: true
---
{% include machine.html id="c1p8kb" %}

View file

@ -72,7 +72,7 @@ Space Invaders Hardware Notes
bit 0 invader movement 1
06 w watchdog timer clear
Note that, unlike most emulators, PC8080 (like PCjs) has a *[Bus](/modules/pc8080/lib/bus.js)* architecture,
Note that, unlike most emulators, PC8080 (like PCx86) has a *[Bus](/modules/pc8080/lib/bus.js)* architecture,
allowing components to "plug in" different kinds of memory or memory-mapped devices at different addresses,
and to register specific functions for specific I/O ports.
@ -81,7 +81,7 @@ attempts to write to those addresses, nothing should happen. Unfortunately, mos
space as one contiguous array of bytes. Which means either that the ROM is susceptible to corruption *or* that every
write operation must check the address to determine its validity, which hurts the performance of *all* writes.
In PC8080 (and PCjs), all writes are equally fast, and all ROMs are fully protected. An exception is made for the
In PC8080 (and PCx86), all writes are equally fast, and all ROMs are fully protected. An exception is made for the
Debugger, which allows you to use the "e" command to modify ("patch") ROM code on the fly, but that is completely
outside and independent of the 8080 code being emulated.

View file

@ -3,7 +3,7 @@ layout: page
title: IBM PC Keyboard Devices
permalink: /devices/pcx86/keyboard/
redirect_from:
- /devices/pcx86/keyboard/
- /devices/pc/keyboard/
---
IBM PC Keyboard Devices

View file

@ -4,6 +4,7 @@ title: IBM PC (Model 5150) Machines
permalink: /devices/pcx86/machine/5150/
redirect_from:
- /configs/pc/machines/5150/
- /devices/pc/machine/5150/
---
IBM PC (Model 5150) Machines

View file

@ -3,7 +3,7 @@ layout: page
title: IBM PC (Model 5150, 384Kb) with Color Display and Soft Keyboard
permalink: /devices/pcx86/machine/5150/cga/384kb/softkbd/
redirect_from:
- /devices/pcx86/machine/5150/cga/384kb/
- /devices/pc/machine/5150/cga/384kb/softkbd/
machines:
- type: pcx86
id: ibm5150

View file

@ -4,6 +4,7 @@ title: IBM PC (Model 5150, 64Kb) with Color Display
permalink: /devices/pcx86/machine/5150/cga/64kb/
redirect_from:
- /configs/pc/machines/5150/cga/64kb/
- /devices/pc/machine/5150/cga/64kb/
---
IBM PC with Color Graphics (CGA) Display

View file

@ -6,6 +6,7 @@ redirect_from:
- /configs/pc/machines/5150/cga/64kb/donkey/
- /configs/pc/machines/5150/cga/64kb/donkey/machine.xml/
- /demos/pc/donkey/
- /devices/pc/machine/5150/cga/64kb/donkey/
machines:
- type: pcx86
id: ibm5150
@ -20,9 +21,9 @@ The above simulation is configured for a clock speed of 4.77Mhz, with 64Kb of RA
using the original IBM PC Model 5150 ROM BIOS and CGA font ROM. This configuration also includes a
predefined state, with PC-DOS 1.0 already booted and DONKEY.BAS ready to run.
And now that PCjs automatically saves all your changes (subject to the limits of your browser's local
And now that PCx86 automatically saves all your changes (subject to the limits of your browser's local
storage), you can even close the browser in the middle of a game of DONKEY, and the next time you load
this page, your progress (and the donkey) will be perfectly restored.
For more control over this machine, try the [Control Panel](debugger/) configuration, featuring the
built-in PCjs Debugger.
built-in PCx86 Debugger.

View file

@ -3,7 +3,7 @@ layout: page
title: IBM PC (Model 5150, 64Kb) with Color Display and Debugger
permalink: /devices/pcx86/machine/5150/cga/64kb/donkey/debugger/
redirect_from:
- /devices/pcx86/machine/5150/cga/64kb/donkey/debugger/
- /devices/pc/machine/5150/cga/64kb/donkey/debugger/
machines:
- type: pcx86
id: ibm5150

File diff suppressed because one or more lines are too long

View file

@ -2,6 +2,8 @@
layout: page
title: IBM PC (Model 5150, 64Kb) with Color Display and Soft Keyboard
permalink: /devices/pcx86/machine/5150/cga/64kb/softkbd/
redirect_from:
- /devices/pc/machine/5150/cga/64kb/softkbd/
machines:
- type: pcx86
id: ibm5150

View file

@ -5,6 +5,7 @@ permalink: /devices/pcx86/machine/5150/cga/
redirect_from:
- /configs/pc/machines/5150/cga/
- /demos/pc/cga/
- /devices/pc/machine/5150/cga/
---
IBM PC with Color Graphics (CGA) Display

View file

@ -2,6 +2,8 @@
layout: page
title: IBM PC (Model 5150, 64Kb) with Dual Displays
permalink: /devices/pcx86/machine/5150/dual/64kb/
redirect_from:
- /devices/pc/machine/5150/dual/64kb/
machines:
- type: pcx86
id: ibm5150

View file

@ -4,6 +4,7 @@ title: IBM PC (Model 5150) with Dual Displays
permalink: /devices/pcx86/machine/5150/dual/
redirect_from:
- /configs/pc/machines/5150/dual/
- /devices/pc/machine/5150/dual/
---
IBM PC with Dual Displays

View file

@ -4,6 +4,7 @@ title: IBM PC (Model 5150, 64Kb) with Monochrome Display and Debugger
permalink: /devices/pcx86/machine/5150/mda/64kb/debugger/
redirect_from:
- /configs/pc/machines/5150/mda/64kb/debugger/
- /devices/pc/machine/5150/mda/64kb/debugger/
machines:
- type: pcx86
id: ibm5150

View file

@ -6,6 +6,7 @@ redirect_from:
- /configs/pc/machines/5150/mda/64kb/
- /configs/pc/machines/5150/mda/64kb/index.xml/
- /configs/pc/machines/5150/mda/64kb/machine.xml/
- /devices/pc/machine/5150/mda/64kb/
machines:
- type: pcx86
id: ibm5150

View file

@ -2,6 +2,8 @@
layout: page
title: IBM PC (Model 5150, 64Kb) with Monochrome Display and Soft Keyboard
permalink: /devices/pcx86/machine/5150/mda/64kb/softkbd/
redirect_from:
- /devices/pc/machine/5150/mda/64kb/softkbd/
machines:
- type: pcx86
id: ibm5150

View file

@ -4,6 +4,7 @@ title: IBM PC (Model 5150) with Monochrome (MDA) Display
permalink: /devices/pcx86/machine/5150/mda/
redirect_from:
- /configs/pc/machines/5150/mda/
- /devices/pc/machine/5150/mda/
machines:
- type: pcx86
id: ibm5150

View file

@ -4,6 +4,7 @@ title: IBM PC XT (Model 5160)
permalink: /devices/pcx86/machine/5160/cga/256kb/
redirect_from:
- /configs/pc/machines/5160/cga/256kb/
- /devices/pc/machine/5160/cga/256kb/
---
IBM PC XT (256Kb) with Color Display

View file

@ -2,6 +2,8 @@
layout: page
title: IBM PC XT (Model 5160, 256Kb, 10Mb Drive) Machine Array with CGA Displays
permalink: /devices/pcx86/machine/5160/cga/256kb/array/
redirect_from:
- /devices/pc/machine/5160/cga/256kb/array/
machines:
- type: pcx86
id: ibm5160a

View file

@ -4,6 +4,7 @@ title: IBM PC XT (Model 5160, 256Kb, 10Mb Drive) with Color Display
permalink: /devices/pcx86/machine/5160/cga/256kb/demo/
redirect_from:
- /configs/pc/machines/5160/cga/256kb/demo/
- /devices/pc/machine/5160/cga/256kb/demo/
machines:
- type: pcx86
id: ibm5160

View file

@ -4,6 +4,7 @@ title: IBM PC XT (Model 5160, 256Kb, 10Mb Drive) with Color Display and Debugger
permalink: /devices/pcx86/machine/5160/cga/256kb/demo/debugger/
redirect_from:
- /configs/pc/machines/5160/cga/256kb/demo/debugger/
- /devices/pc/machine/5160/cga/256kb/demo/debugger/
machines:
- type: pcx86
id: ibm5160

View file

@ -2,6 +2,8 @@
layout: page
title: IBM PC XT (Model 5160, 256Kb, 10Mb Drive) with Color Display and Soft Keyboard
permalink: /devices/pcx86/machine/5160/cga/256kb/softkbd/
redirect_from:
- /devices/pc/machine/5160/cga/256kb/softkbd/
machines:
- type: pcx86
id: ibm5160

View file

@ -7,6 +7,7 @@ redirect_from:
- /configs/pc/machines/5160/cga/256kb/win101/machine.xml/
- /demos/pc/cga-win101/xt-cga-win101.xml/
- /demos/pc/cga-win101/
- /devices/pc/machine/5160/cga/256kb/win101/
machines:
- type: pcx86
id: ibm5160

View file

@ -4,6 +4,7 @@ title: IBM PC XT (Model 5160, 256Kb, 10Mb Drive) with Color Display and Debugger
permalink: /devices/pcx86/machine/5160/cga/256kb/win101/debugger/
redirect_from:
- /configs/pc/machines/5160/cga/256kb/win101/debugger/
- /devices/pc/machine/5160/cga/256kb/win101/debugger/
machines:
- type: pcx86
id: ibm5160

View file

@ -5,6 +5,7 @@ permalink: /devices/pcx86/machine/5160/cga/256kb/win101/softkbd/
redirect_from:
- /configs/pc/machines/5160/cga/256kb/win101/softkbd/index.xml/
- /configs/pc/machines/5160/cga/256kb/win101/softkbd/machine.xml/
- /devices/pc/machine/5160/cga/256kb/win101/softkbd/
machines:
- type: pcx86
id: ibm5160

File diff suppressed because one or more lines are too long

View file

@ -4,8 +4,9 @@ title: IBM PC XT (Model 5160, 512Kb, 10Mb Drive) with Color Display and Soft Key
permalink: /devices/pcx86/machine/5160/cga/512kb/win101/softkbd/
redirect_from:
- /configs/pc/machines/5160/cga/512kb/win101/softkbd/
- /devices/pcx86/machine/5160/cga/512kb/
- /devices/pcx86/machine/5160/cga/512kb/win101/
- /devices/pc/machine/5160/cga/512kb/
- /devices/pc/machine/5160/cga/512kb/win101/
- /devices/pc/machine/5160/cga/512kb/win101/softkbd/
machines:
- type: pcx86
id: ibm5160

View file

@ -2,6 +2,8 @@
layout: page
title: IBM PC XT (Model 5160, 640Kb, 10Mb Drive) with Color Display and Debugger
permalink: /devices/pcx86/machine/5160/cga/640kb/debugger/
redirect_from:
- /devices/pc/machine/5160/cga/640kb/debugger/
machines:
- type: pcx86
id: ibm5160

View file

@ -2,6 +2,8 @@
layout: page
title: IBM PC XT (Model 5160, 640Kb, 10Mb Drive) with Color Display
permalink: /devices/pcx86/machine/5160/cga/640kb/
redirect_from:
- /devices/pc/machine/5160/cga/640kb/
machines:
- type: pcx86
id: ibm5160

View file

@ -2,6 +2,8 @@
layout: page
title: IBM PC XT (Model 5160, 640Kb, 10Mb Drive) with Color Display and Soft Keyboard
permalink: /devices/pcx86/machine/5160/cga/640kb/softkbd/
redirect_from:
- /devices/pc/machine/5160/cga/640kb/softkbd/
machines:
- type: pcx86
id: ibm5160

View file

@ -4,6 +4,7 @@ title: IBM PC (Model 5160) with Color Display
permalink: /devices/pcx86/machine/5160/cga/
redirect_from:
- /configs/pc/machines/5160/cga/
- /devices/pc/machine/5160/cga/
---
IBM PC XT with Color Graphics (CGA) Display