コード例 #1
0
ファイル: VByte.cs プロジェクト: awesumscott/nessharp.core
 public VByte SetLSR()
 {
     if (Index is RegisterY)
     {
         throw new Exception("Cannot SetLSR with index Y");
     }
     CPU6502.LSR(this);
     return(this);
 }
コード例 #2
0
 public RegisterA LSR()
 {
     CPU6502.LSR(this);      return(this);
 }