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