Trying a second approach to the Int36 class that sticks to unsigned numbers internally (only downside so far is that the detecting arithmetic overflow/underflow is more work and hasn't been implemented yet)

This commit is contained in:
Jeff Parsons 2017-02-15 16:16:32 -08:00 committed by Jeff Parsons
commit 6bc0d8ac49
3 changed files with 713 additions and 97 deletions

View file

@ -31,8 +31,8 @@
"use strict";
var repl = require("repl");
var Defines = require("../../shared/lib/defines");
var Int36 = require("../../shared/lib/int36");
var Defines = require("../lib/defines");
var Int36 = require("../lib/int36");
var i36Reg = new Int36();