Basilio/js/TI.js

21 lines
508 B
JavaScript
Raw Normal View History

2015-01-22 21:32:46 +00:00
/// <reference path="Byte.ts" />
2015-01-23 19:46:23 +00:00
/// <reference path="LCD.ts" />
2015-01-25 20:06:11 +00:00
/// <reference path="Memory.ts" />
/// <reference path="Registers.ts" />
/// <reference path="ops/0x0.ts" />
2015-01-22 21:32:46 +00:00
var TI = (function () {
function TI() {
}
TI.Init = function () {
2015-01-23 19:46:23 +00:00
LCD.Init();
2015-01-25 20:06:11 +00:00
var a = new Byte(0xF0);
var b = new Byte(10);
//a.Sub(b);
2015-01-25 20:06:11 +00:00
alert(a.Get());
a.ShiftLeft(true);
alert(a.Get());
2015-01-22 21:32:46 +00:00
};
2015-01-25 20:06:11 +00:00
TI.Opcodes = [];
2015-01-22 21:32:46 +00:00
return TI;
})();
//# sourceMappingURL=TI.js.map