public Component(int memSize) { Ram = new Memory(memSize); Ual = new UAL(this); Umc = new UMC(this); this.Process = new Process(this); this.Cache = new Memory(0x3fffc); }
public Component(Memory ram) { Ram = ram; Ual = new UAL(this); Umc = new UMC(this); }