public void Setup()
 {
     cpu = new Processor (new ushort[0], new IHardware[0]);
 }
 public void Setup()
 {
     ushort[] instructions = InstructionLoader.Load (path);
     cpu = new Processor (instructions, new IHardware[0]);
 }