Exemplo n.º 1
0
 public IndexingRegister Inc()
 {
     if (this is RegisterX)
     {
         CPU6502.INX();
     }
     else
     {
         CPU6502.INY();
     }
     return(this);
 }
Exemplo n.º 2
0
 public new RegisterY Increment()
 {
     CPU6502.INY();
     return(this);
 }