コード例 #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);
 }
コード例 #2
0
ファイル: UAL.cs プロジェクト: QsCompany/Q-Compiler
 public Component(Memory ram)
 {
     Ram = ram;
     Ual = new UAL(this);
     Umc = new UMC(this);
 }