Basilio/js/TI.ts

15 lines
263 B
TypeScript
Raw Normal View History

2015-01-22 21:32:46 +00:00
/// <reference path="Byte.ts" />
class TI {
static rom: Byte[][];
static ram: Byte[][];
static mmap: any[];
static registers: any[];
static Init() {
var a = new Byte(40);
var b = new Byte(40);
alert(a.Get());
}
}