Skip to content

Commit 6028bb2

Browse files
committed
Merge remote-tracking branch 'origin/master' into HEAD
2 parents a8777f0 + 6643d7e commit 6028bb2

6 files changed

Lines changed: 6 additions & 10 deletions

File tree

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,6 @@ just specify `yarn run build` and then `yarn run run` to run the
6262
emulator.
6363

6464

65-
## DEC Documentation
66-
You will find a lot of useful information about the PDP-10, TOPS-20,
67-
and associated technology in my Google Drive folder for large
68-
documentation files for this project.
69-
70-
https://drive.google.com/drive/folders/15VhnAnhNS_L25S7T2u098c1plF42hNec?usp=sharing
71-
72-
7365
# Status
7466
The project has been going for a few months of spare time so far. I
7567
have most of the EBOX (execution box) emulated to at least the first

em.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1017,6 +1017,7 @@ function installTestCode() {
10171017
}
10181018

10191019
const ev = loadDECSAV(bootFD);
1020+
MBOX.data[0] = ev.startInsn; // Copy start instruction to PC=0 (for now?)
10201021
console.log(`\
10211022
${saveFileName}: \
10221023
lo:${octW(ev.loAddr)} hi:${octW(ev.hiAddr)} startInsn=${octW(ev.startInsn)}`);

gencode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ function readAndHandleDirectives() {
179179
}
180180

181181

182-
// Parse a line of microassmebly listing, extracting address and code.
182+
// Parse a line of microassembly listing, extracting address and code.
183183
// This works for CRAM or DRAM with the only different controlled by
184184
// the `re` parameter. `linesRE` (only specified for CRAM) is the
185185
// position to reference as the start of source code for the first
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
uri: file:///home/alan/kl10-microcode/kl10-docs/MP00301_KL10PV_Jun80-OCR.pdf
2+
attributes:
3+
metadata::evince::bookmarks: [(342, 'CRA1'), (391, 'CRAM'), (385, 'APR FM address'), (157, 'CON1'), (402, 'DTE20 module utilization'), (397, 'CRAM bit mapping'), (333, 'SHM1'), (16, 'DP03'), (363, 'CTL1'), (130, 'IR4'), (577, 'backplane3'), (559, 'EBOX BOM'), (167, 'CLK1'), (353, 'VMA1'), (137, 'SCD1'), (381, 'APR1'), (124, 'CHD substitute M8549-YH'), (105, 'PAG1'), (83, 'PMA1'), (73, 'MB01'), (58, 'CHX substitute M8549-YF'), (46, 'CHX1'), (43, 'CHA substitute M8549-YE'), (35, 'CHA1'), (23, 'CSH1'), (177, 'MBX1'), (188, 'MBC1'), (208, 'PIC1'), (218, 'CCW substitute M8549-YB'), (221, 'CHC1'), (233, 'CCW1'), (255, 'CRC1'), (277, 'CCL1'), (288, 'CCL subtitute M8549-YD'), (302, 'MBZ1'), (323, 'MTR1'), (370, 'MCL1'), (416, 'DPS1'), (439, 'CNT1 (DTE20)')]

kl10-docs/export-metadata

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gio info -a 'metadata::evince::bookmarks' MP00301_KL10PV_Jun80-OCR.pdf | sed -n '/metadata::/ s/^.*: //p' > MP00301_KL10PV_Jun80-OCR.pdf.bookmarks

util.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
'use strict';
22
const _ = require('lodash');
3-
const util = require('util');
43

54
var wrapperEnableLevel = 1;
65
module.exports.wrapperEnableLevel = wrapperEnableLevel;

0 commit comments

Comments
 (0)