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