fix out by one error in fastforward/goFor

This commit is contained in:
BigEd 2010-11-01 18:19:46 +00:00
parent 25e8397a0f
commit ef0bb5cdec

View File

@ -391,7 +391,7 @@ function chipStatus(){
function goFor(){ function goFor(){
var n = headlessSteps; var n = headlessSteps;
estimatedHz1(); estimatedHz1();
while(--n){ while(n--){
halfStep(); halfStep();
cycle++; cycle++;
} }