Ejemplo n.º 1
0
 public VByte SetROL()
 {
     if (Index is RegisterY)
     {
         throw new Exception("Cannot SetROL with index Y");
     }
     CPU6502.ROL(this);
     return(this);
 }
Ejemplo n.º 2
0
 public RegisterA ROL()
 {
     CPU6502.ROL(this);      return(this);
 }