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