public VirtualMachine(Gpu render) { this.Render = render; this.Processor = new Processor(this.Render); this.ProcessingStatus = ProcessingStatus.Stopped; }
public Processor(Gpu gpu) { this.Gpu = gpu; this.Keyboard = new Keyboard(); this.Initialize(); }
public void SetUp() { this.gpu = new TestGpu(); this.processor = new Processor(this.gpu); }