Updated default PDP-11 speed
This commit is contained in:
parent
1d395b7bd5
commit
a731313215
2 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ function CPUStatePDP11(parmsCPU)
|
|||
switch(this.model) {
|
||||
case PDP11.MODEL_1170:
|
||||
default:
|
||||
nCyclesDefault = 1000000;
|
||||
nCyclesDefault = 6666667;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue