public CentralController()
 {
     _componentsForm = new ComponentsForm(this);
     _componentsForm.Show();
     _compilerController = Assembly.GetCompilerController(this);
     _memoryController   = Assembly.GetMemoryController();
 }
Example #2
0
 public CentralController()
 {
     _componentsForm = new ComponentsForm(this);
     _componentsForm.Show();
     _compilerController        = Assembly.GetCompilerController(this);
     _memoryController          = Assembly.GetMemoryController(this);
     _debugController           = Assembly.GetDebugController(this);
     _interruptionController    = Assembly.GetInterruptionController();
     _externalDevicesController = Assembly.GetExternalDevicesController(this);
     // Важно, чтобы CPU создавался после debug'a
     _cpu = Assembly.GetCpu(this);
 }