2015-01-22 21:32:46 +00:00
|
|
|
var Byte = (function () {
|
|
|
|
function Byte(init) {
|
2015-01-23 06:05:27 +00:00
|
|
|
if (init === void 0) { init = 0; }
|
|
|
|
this.value = init & 0xFF | (init < 0 ? 0x80 : 0);
|
2015-01-22 21:32:46 +00:00
|
|
|
}
|
|
|
|
Byte.prototype.Add = function (val) {
|
2015-01-23 06:05:27 +00:00
|
|
|
val = typeof val == "number" ? new Byte(val) : val;
|
|
|
|
var hold = this.value + val.Get();
|
|
|
|
this.value = hold & 0xFF;
|
|
|
|
return new Byte(hold > 255 ? hold - 255 : 0);
|
2015-01-22 21:32:46 +00:00
|
|
|
};
|
|
|
|
Byte.prototype.Sub = function (val) {
|
2015-01-23 06:05:27 +00:00
|
|
|
val = typeof val == "number" ? new Byte(val) : val;
|
|
|
|
return this.Add(val.Neg());
|
2015-01-22 21:32:46 +00:00
|
|
|
};
|
|
|
|
Byte.prototype.Get = function () {
|
|
|
|
return this.value;
|
|
|
|
};
|
|
|
|
Byte.prototype.Set = function (val) {
|
2015-01-23 06:05:27 +00:00
|
|
|
this.value = typeof val == "number" ? val & 0xFF : val.Get();
|
|
|
|
};
|
|
|
|
Byte.prototype.Neg = function (bind) {
|
|
|
|
if (bind === void 0) { bind = false; }
|
|
|
|
var tmp = new Byte(~this.value + 1);
|
|
|
|
this.value = bind ? tmp.Get() : this.value;
|
|
|
|
return tmp;
|
|
|
|
};
|
|
|
|
Byte.prototype.And = function (val) {
|
|
|
|
val = typeof val == "number" ? new Byte(val) : val;
|
|
|
|
this.value = this.value & val.Get();
|
|
|
|
};
|
|
|
|
Byte.prototype.Or = function (val) {
|
|
|
|
val = typeof val == "number" ? new Byte(val) : val;
|
|
|
|
this.value = this.value | val.Get();
|
|
|
|
};
|
|
|
|
Byte.prototype.Xor = function (val) {
|
|
|
|
val = typeof val == "number" ? new Byte(val) : val;
|
|
|
|
this.value = this.value ^ val.Get();
|
|
|
|
};
|
|
|
|
Byte.prototype.Not = function () {
|
|
|
|
this.value = ~this.value;
|
|
|
|
};
|
|
|
|
Byte.prototype.Bit = function (pos, val) {
|
|
|
|
pos = pos % 8;
|
|
|
|
this.Set(val ? (this.value | Math.pow(2, pos)) : (this.value & ~Math.pow(2, pos)));
|
|
|
|
};
|
2015-01-23 19:46:23 +00:00
|
|
|
Byte.prototype.Test = function (pos) {
|
|
|
|
pos = pos % 8;
|
|
|
|
return (this.value & Math.pow(2, pos)) != 0;
|
|
|
|
};
|
2015-01-23 06:05:27 +00:00
|
|
|
Byte.prototype.ShiftLeft = function (carry, value) {
|
|
|
|
if (carry === void 0) { carry = false; }
|
|
|
|
if (value === void 0) { value = false; }
|
|
|
|
var ret = (this.value & 0x80) != 0;
|
|
|
|
this.Set(this.value << 1);
|
|
|
|
this.Bit(0, carry ? ret : value);
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
Byte.prototype.ShiftRight = function (carry, value) {
|
|
|
|
if (carry === void 0) { carry = false; }
|
|
|
|
if (value === void 0) { value = false; }
|
|
|
|
var ret = (this.value & 0x80) != 0;
|
|
|
|
this.Set(this.value >>> 1);
|
|
|
|
this.Bit(7, carry ? ret : value);
|
|
|
|
return ret;
|
2015-01-22 21:32:46 +00:00
|
|
|
};
|
|
|
|
return Byte;
|
|
|
|
})();
|
|
|
|
var Word = (function () {
|
2015-01-25 20:06:11 +00:00
|
|
|
function Word(high, low) {
|
|
|
|
this.Set(high, low);
|
2015-01-22 21:32:46 +00:00
|
|
|
}
|
2015-01-25 20:06:11 +00:00
|
|
|
Word.prototype.High = function () {
|
|
|
|
return this.value[0];
|
|
|
|
};
|
|
|
|
Word.prototype.Low = function () {
|
|
|
|
return this.value[1];
|
|
|
|
};
|
|
|
|
Word.prototype.Set = function (high, low) {
|
|
|
|
this.value = typeof high == "number" ? [new Byte((high & ~0xFF) >> 8), new Byte(high & 0xFF)] : [high, low];
|
|
|
|
};
|
|
|
|
Word.prototype.SetHigh = function (value) {
|
2015-01-27 18:49:08 +00:00
|
|
|
this.value[0] = typeof value == "number" ? new Byte(value) : value;
|
|
|
|
};
|
|
|
|
Word.prototype.SetLow = function (value) {
|
|
|
|
this.value[1] = typeof value == "number" ? new Byte(value) : value;
|
|
|
|
};
|
|
|
|
Word.prototype.Add = function (value) {
|
|
|
|
value = typeof value == "number" ? new Word(value) : value;
|
|
|
|
var overflow = [this.value[0].Add(value.High()), this.value[1].Add(value.Low())];
|
|
|
|
};
|
|
|
|
Word.prototype.AddByte = function (value) {
|
|
|
|
value = typeof value == "number" ? new Byte(value) : value;
|
|
|
|
var over = this.value[1].Add(value);
|
|
|
|
over = this.value[0].Add(over);
|
|
|
|
return new Word(over.Get());
|
2015-01-25 20:06:11 +00:00
|
|
|
};
|
2015-01-22 21:32:46 +00:00
|
|
|
return Word;
|
|
|
|
})();
|
2015-01-23 06:05:27 +00:00
|
|
|
//# sourceMappingURL=Byte.js.map
|