-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
345 changed files
with
13,024 additions
and
3,463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,7 +148,7 @@ process that a web browser would perform, and then connects *stdin* and *stdout* | |
Here's a sample run, from a macOS Terminal window: | ||
|
||
PDPjs v2.20 | ||
Copyright © 2012-2023 Jeff Parsons <[email protected]> | ||
Copyright © 2012-2024 Jeff Parsons <[email protected]> | ||
License: MIT <https://www.pcjs.org/LICENSE.txt> | ||
Portions adapted from the PDP-11/70 Emulator by Paul Nankervis <http://skn.noip.me/pdp11/pdp11.html> | ||
PC11: Loaded tape "BOOTSTRAP-16KB" (28 bytes) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,7 +122,7 @@ exactly what I've done "below the fold". | |
### Transcript of the EGATEST Build Process (as of July 3, 2017) | ||
|
||
PCx86 v1.35.2 | ||
Copyright © 2012-2017 Jeff Parsons <[email protected]> | ||
Copyright © 2012-2024 Jeff Parsons <[email protected]> | ||
License: MIT <https://www.pcjs.org/LICENSE.txt> | ||
Loading /machines/pcx86/ibm/5160/rom/hdc/IBM-XEBEC-1982.json5....... | ||
Loading /machines/pcx86/ibm/5160/rom/basic/BASIC110.json5....... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,7 +88,7 @@ Now let's dive into a much more interesting example. Imagine we have a small co | |
|
||
$ pc.js --commands | ||
pc.js v3.00 | ||
Copyright © 2012-2023 Jeff Parsons <[email protected]> | ||
Copyright © 2012-2024 Jeff Parsons <[email protected]> | ||
Options: --commands | ||
[Type help for list of commands, CTRL-C to terminate] | ||
>> fetch https://harddisks.pcjs.org/pcx86/10mb/MSDOS330-C400.json disks/msdos | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ If you want a small collection of DOS files to start with, `pc.js` can fetch tho | |
|
||
$ pc.js --commands | ||
pc.js v3.00 | ||
Copyright © 2012-2023 Jeff Parsons <[email protected]> | ||
Copyright © 2012-2024 Jeff Parsons <[email protected]> | ||
Options: --commands | ||
[Type help for list of commands, CTRL-C to terminate] | ||
>> fetch https://harddisks.pcjs.org/pcx86/10mb/MSDOS330-C400.json disks/msdos | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* @fileoverview Gulp file for pcjs.org | ||
* @author Jeff Parsons <[email protected]> | ||
* @copyright © 2012-2023 Jeff Parsons | ||
* @copyright © 2012-2024 Jeff Parsons | ||
* @license MIT <https://www.pcjs.org/LICENSE.txt> | ||
* | ||
* This file is part of PCjs, a computer emulation software project at <https://www.pcjs.org>. | ||
|
@@ -371,9 +371,9 @@ gulp.task("copyright", function(done) { | |
* it would also be nice if we could avoid rewriting ANY file that contains no matches, because Gulp's default behavior | ||
* seems to be rewrite EVERYTHING, at least when we're doing these sorts of "in place" operations. | ||
*/ | ||
return gulp.src(["gulpfile.js", "machines/**/*.js", "software/**/*.js", "tools/**/*.js", "**/*.md", "_layouts/*.html"], {base: baseDir}) | ||
return gulp.src(["gulpfile.js", "LICENSE.txt", "_includes/machine.html", "machines/**/*.{js,css,xsl}", "software/**/*.js", "tools/**/*.js", "**/*.md", "_layouts/*.html"], {base: baseDir}) | ||
.pipe(gulpReplace(/(Copyright[ \S]+?)( Jeff Parsons)( +201\d-)[0-9]+/gi, '$1$3' + pkg.year + '$2', {skipBinary: true})) | ||
.pipe(gulpReplace(/(Copyright|\u00A9)( +201\d-)[0-9]+(.*?Jeff Parsons|.*?twitter_username)/gi, '$1$2' + pkg.year + '$3', {skipBinary: true})) | ||
.pipe(gulpReplace(/(Copyright|\u00A9|\(c\))( +201\d-)[0-9]+(.*?Jeff Parsons|.*?twitter_username)/gi, '$1$2' + pkg.year + '$3', {skipBinary: true})) | ||
.pipe(gulp.dest(baseDir)); | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* @fileoverview Implements Space Invaders I/O ports | ||
* @author Jeff Parsons <[email protected]> | ||
* @copyright © 2012-2023 Jeff Parsons | ||
* @copyright © 2012-2024 Jeff Parsons | ||
* @license MIT <https://www.pcjs.org/LICENSE.txt> | ||
* | ||
* This file is part of PCjs, a computer emulation software project at <https://www.pcjs.org>. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* @fileoverview Implements Space Invaders video hardware | ||
* @author Jeff Parsons <[email protected]> | ||
* @copyright © 2012-2023 Jeff Parsons | ||
* @copyright © 2012-2024 Jeff Parsons | ||
* @license MIT <https://www.pcjs.org/LICENSE.txt> | ||
* | ||
* This file is part of PCjs, a computer emulation software project at <https://www.pcjs.org>. | ||
|
Oops, something went wrong.