///
///
///
///
///
var TI = (function () {
function TI() {
}
TI.PerformOperation = function (data) {
this.Opcodes[data[0].Get()](data);
};
TI.Init = function () {
Registers.Init();
LCD.Init();
Memory.Init();
var a = new Byte(0xF0);
var b = new Byte(10);
//a.Sub(b);
//alert(a.Get());
a.ShiftLeft(true);
//alert(a.Get());
};
TI.Opcodes = [];
return TI;
})();
//# sourceMappingURL=TI.js.map