Updated default PDP-11 speed

This commit is contained in:
Jeff 2016-09-29 22:43:55 -07:00 committed by Jeff Parsons
commit a731313215
2 changed files with 2 additions and 2 deletions

View file

@ -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.
*/
/**

View file

@ -70,7 +70,7 @@ function CPUStatePDP11(parmsCPU)
switch(this.model) {
case PDP11.MODEL_1170:
default:
nCyclesDefault = 1000000;
nCyclesDefault = 6666667;
break;
}