Fixes for eci, binary div, upce, other

This commit is contained in:
gitlost
2019-09-01 20:23:15 +01:00
parent 89c2ee6f1d
commit d76cdd615b
11 changed files with 80 additions and 100 deletions

View File

@ -173,7 +173,7 @@ short int islarger(short int accum[], short int reg[]) {
latch = 1;
}
i--;
} while ((latch == 0) && (i >= -1));
} while ((latch == 0) && (i >= 0));
return larger;
}