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