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