Example #1
0
 public Frame(byte[] data1, PsxControllerType port1, byte[] data2, PsxControllerType port2, byte control)
 {
     _type1       = port1;
     _type2       = port2;
     _controller1 = PsxController.GetController(port1, data1);
     _controller2 = PsxController.GetController(port2, data2);
     _console     = (Console)control;
 }