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:
parent
259dd7d66f
commit
6bc0d8ac49
3 changed files with 713 additions and 97 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue