Exemple #1
0
 public VirtualMachine(Gpu render)
 {
     this.Render = render;
     this.Processor = new Processor(this.Render);
     this.ProcessingStatus = ProcessingStatus.Stopped;
     
 }
Exemple #2
0
 public Processor(Gpu gpu)
 {
     this.Gpu = gpu;
     this.Keyboard = new Keyboard();
     this.Initialize();
 }
Exemple #3
0
 public void SetUp()
 {
     this.gpu = new TestGpu();
     this.processor = new Processor(this.gpu);
 }
Exemple #4
0
 public VirtualMachine(Gpu render)
 {
     this.Render           = render;
     this.Processor        = new Processor(this.Render);
     this.ProcessingStatus = ProcessingStatus.Stopped;
 }
Exemple #5
0
 public Processor(Gpu gpu)
 {
     this.Gpu      = gpu;
     this.Keyboard = new Keyboard();
     this.Initialize();
 }