Try the same calRemainingTime() anomaly-detection code in PCx86 that we've already implemented in PC8080
This commit is contained in:
parent
6dd38db68c
commit
6fb2f02b13
2 changed files with 11 additions and 1 deletions
|
|
@ -1425,7 +1425,9 @@ Computer.prototype.getMachineComponent = function(sType, componentPrev)
|
|||
}
|
||||
if (component.type == sType) return component;
|
||||
}
|
||||
if (!componentLast) Component.log("Machine component type '" + sType + "' not found", "warning");
|
||||
if (!componentLast && sType != "FPU") {
|
||||
Component.log("Machine component type '" + sType + "' not found", "warning");
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue