Created PDP-10 skeleton

This commit is contained in:
Jeff Parsons 2017-02-19 15:22:58 -08:00 committed by Jeff Parsons
commit ba7de38fbf
40 changed files with 12282 additions and 35 deletions

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements the PDP11 Bus component.
* @fileoverview Implements the PDP-11 Bus component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements the PDP11 Computer component.
* @fileoverview Implements the PDP-11 Computer component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Controls the PDP11 CPU component.
* @fileoverview Controls the PDP-11 CPU component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements PDP11 opcode handlers.
* @fileoverview Implements PDP-11 opcode handlers.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements the PDP11 CPU component.
* @fileoverview Implements the PDP-11 CPU component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements the PDP11 Debugger component.
* @fileoverview Implements the PDP-11 Debugger component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview PDP11-specific compile-time definitions.
* @fileoverview PDP-11 compile-time definitions.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements PDP11 device support.
* @fileoverview Implements PDP-11 device support.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements a generic disk drive controller
* @fileoverview Implements a generic disk drive controller.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements the PDP11 Keyboard component.
* @fileoverview Implements the PDP-11 Keyboard component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements the PDP11 Memory component.
* @fileoverview Implements the PDP-11 Memory component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*
@ -738,8 +738,8 @@ class MemoryPDP11 {
*
* @this {MemoryPDP11}
* @param {number} off
* @param {number} addr
* @param {number} b
* @param {number} addr
*/
writeByteChecked(off, b, addr)
{
@ -754,8 +754,8 @@ class MemoryPDP11 {
*
* @this {MemoryPDP11}
* @param {number} off
* @param {number} addr
* @param {number} w
* @param {number} addr
*/
writeWordChecked(off, w, addr)
{
@ -859,8 +859,8 @@ class MemoryPDP11 {
*
* @this {MemoryPDP11}
* @param {number} off
* @param {number} addr
* @param {number} b
* @param {number} addr
*/
writeByteLE(off, b, addr)
{
@ -876,8 +876,8 @@ class MemoryPDP11 {
*
* @this {MemoryPDP11}
* @param {number} off
* @param {number} addr
* @param {number} w
* @param {number} addr
*/
writeWordBE(off, w, addr)
{
@ -893,8 +893,8 @@ class MemoryPDP11 {
*
* @this {MemoryPDP11}
* @param {number} off
* @param {number} addr
* @param {number} w
* @param {number} addr
*/
writeWordLE(off, w, addr)
{

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Defines PDP11 message categories.
* @fileoverview Defines PDP-11 message categories.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements the PDP11 Panel component.
* @fileoverview Implements the PDP-11 Panel component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements the PDP11 RAM component.
* @fileoverview Implements the PDP-11 RAM component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*

View file

@ -1,5 +1,5 @@
/**
* @fileoverview Implements the PDP11 ROM component.
* @fileoverview Implements the PDP-11 ROM component.
* @author <a href="mailto:Jeff@pcjs.org">Jeff Parsons</a>
* @copyright © Jeff Parsons 2012-2017
*