Exemple #1
0
 private RegisterY LDY(IOperand o)
 {
     if (o is RegisterA)
     {
         CPU6502.TAY();
     }
     else if (o is RegisterX)
     {
         CPU6502.TXA();
         CPU6502.TAY();
     }
     else
     {
         CPU6502.LDY(o);
     }
     return(this);
 }