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