Basilio/js/Memory.js
Alec Obradovich a98b4bb92b woah a code name
creativity at its finest
2015-01-23 00:05:27 -06:00

26 lines
590 B
JavaScript

/// <reference path="Byte.ts" />
var Bank = (function () {
function Bank(fill) {
if (fill === void 0) { fill = 0; }
}
return Bank;
})();
var MemoryMap = (function () {
function MemoryMap(type, index) {
this.Set(type, index);
}
MemoryMap.prototype.Set = function (type, index) {
this.type = type;
this.index = index;
};
return MemoryMap;
})();
var Memory = (function () {
function Memory() {
}
Memory.Init = function () {
};
Memory.romLock = true;
return Memory;
})();
//# sourceMappingURL=Memory.js.map