Implemented 36-bit division with support for (up to) 72-bit dividends

This commit is contained in:
Jeff Parsons 2017-02-13 14:04:00 -08:00 committed by Jeff Parsons
commit 7131e471ac
2 changed files with 243 additions and 84 deletions

View file

@ -130,6 +130,9 @@ for (let i = 0; i <= 12; i++) {
test("mul " + Math.pow(8, i));
}
test("set 100");
test("div 3");
repl.start({
prompt: "int36> ",
input: process.stdin,