public U8Emulator(byte[] ROM) { // full emulator (for mah bucket list ;)) this.Registers = new U8Registers(); byte segCount = 0x0F; // 4 bit counter? this.Memory = new byte[segCount * 0x10000]; this.ROM = ROM; }
public U8Emulator() { // mini emulating this.Registers = new U8Registers(); }