Ejemplo n.º 1
0
 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);
 }
Ejemplo n.º 2
0
 public Component(Memory ram)
 {
     Ram = ram;
     Ual = new UAL(this);
     Umc = new UMC(this);
 }