コード例 #1
0
 public void Merge(Joined other)
 {
     if (MF == null)
     {
         MF = other.MF;
     }
     if (SLR == null)
     {
         SLR = other.SLR;
     }
     if (LB == null)
     {
         LB = other.LB;
     }
     if (SBC == null || !SBC.Any())
     {
         SBC = other.SBC;
     }
     if (Receipt == null)
     {
         Receipt = other.Receipt;
     }
 }
コード例 #2
0
ファイル: SBCTest.cs プロジェクト: Opelkuh/6502sharp
 public SBCTest()
 {
     _sbc = new SBC(machine.CPU);
 }
コード例 #3
0
 public bool IsEmpty() => MF == null && SLR == null && LB == null && (SBC == null || !SBC.Any());