From a731313215d699ff57baca060a9afebcb510f878 Mon Sep 17 00:00:00 2001 From: Jeff Date: Thu, 29 Sep 2016 22:43:55 -0700 Subject: [PATCH] Updated default PDP-11 speed --- modules/pdp11/lib/cpu.js | 2 +- modules/pdp11/lib/cpustate.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/pdp11/lib/cpu.js b/modules/pdp11/lib/cpu.js index 73e00f06d..40412c24b 100644 --- a/modules/pdp11/lib/cpu.js +++ b/modules/pdp11/lib/cpu.js @@ -62,7 +62,7 @@ if (NODE) { * 750ns. My initial take on DEC's timings is that they are including the write time as part * of the total EF (execute/fetch) time. So, for instructions that write to memory, it looks * like we'll normally need to add 5 cycles (750/150) to the instruction's base time, but - * we'll need to keep an eye for exceptions. + * we'll need to keep an eye out for exceptions. */ /** diff --git a/modules/pdp11/lib/cpustate.js b/modules/pdp11/lib/cpustate.js index 570a88048..295d79d46 100644 --- a/modules/pdp11/lib/cpustate.js +++ b/modules/pdp11/lib/cpustate.js @@ -70,7 +70,7 @@ function CPUStatePDP11(parmsCPU) switch(this.model) { case PDP11.MODEL_1170: default: - nCyclesDefault = 1000000; + nCyclesDefault = 6666667; break; }