Renamed PDP11js to PDPjs (mostly a cosmetic change, except for the versions directory, and less of a mouthful)

This commit is contained in:
Jeff 2016-10-05 17:43:46 -07:00 committed by Jeff Parsons
commit 21b4fe4942
35 changed files with 418 additions and 3395 deletions

View file

@ -15,7 +15,7 @@ The project currently includes these emulation modules:
* [C1Pjs](c1pjs/): 6502 emulation module for the [Challenger 1P](/devices/c1p/)
* [PCx86](pcx86/): x86 emulation module for [IBM PC machines](/devices/pcx86/)
* [PC8080](pc8080/): 8080 emulation module for [8080-based machines](/devices/pc8080/)
* [PDP11js](pdp11/): PDP-11 emulation module for [PDP-11 machines](/devices/pdp11/) (eg, PDP-11/45, PDP-11/70)
* [PDPjs](pdp11/): PDP-11 emulation module for [PDP-11 machines](/devices/pdp11/) (eg, PDP-11/45, PDP-11/70)
along with variety of Node support modules, such as:

View file

@ -1,19 +1,19 @@
---
layout: page
title: PDP-11 Machine Emulation Module (PDP11js)
title: PDP-11 Machine Emulation Module (PDPjs)
permalink: /modules/pdp11/
---
PDP-11 Machine Emulation Module (PDP11js)
PDP-11 Machine Emulation Module (PDPjs)
=========================================
Overview
---
PDP11js is our PDP-11 machine emulation module. The code is being adapted from
PDPjs is our PDP-11 machine emulation module. The code is being adapted from
the JavaScript [PDP 11/70 Emulator (v1.3)](http://skn.noip.me/pdp11/pdp11.html) written by
[Paul Nankervis](mailto:paulnank@hotmail.com).
PDP11js is currently comprised of the following non-shared components, as listed in
PDPjs is currently comprised of the following non-shared components, as listed in
[package.json](../../package.json) (see the *pdp11Files* property):
* [defines.js](/modules/pdp11/lib/defines.js)

View file

@ -44,7 +44,7 @@ var APPCLASS = "pdp11"; // this @define is the default application class
*
* @define {string}
*/
var APPNAME = "PDP11js"; // this @define is the default application name (eg, "PCx86", "C1Pjs")
var APPNAME = "PDPjs"; // this @define is the default application name (eg, "PCx86", "C1Pjs")
/**
* WARNING: DEBUGGER needs to accurately reflect whether or not the Debugger component is (or will be) loaded.

View file

@ -592,7 +592,7 @@ function embedPC8080(idMachine, sXMLFile, sXSLFile, sParms)
function embedPDP11(idMachine, sXMLFile, sXSLFile, sParms)
{
if (fAsync) web.enablePageEvents(false);
return embedMachine("PDP11js", "pdp11", APPVERSION, idMachine, sXMLFile, sXSLFile, sParms);
return embedMachine("PDPjs", "pdp11", APPVERSION, idMachine, sXMLFile, sXSLFile, sParms);
}
/**
@ -608,7 +608,7 @@ if (APPNAME == "PCx86") {
if (APPNAME == "PC8080") {
window['embedPC8080'] = embedPC8080;
}
if (APPNAME == "PDP11js") {
if (APPNAME == "PDPjs") {
window['embedPDP11'] = embedPDP11;
}