Exemple #1
0
 public ClockEntryRep(ClockOp op, bool comboNext, byte length)
     : base(op, comboNext)
 {
     _length = length;
     _cycle = 0;
 }
Exemple #2
0
 public ClockEntryRep(ClockOp op, byte length)
     : base(op)
 {
     _length = length;
     _cycle = 0;
 }
Exemple #3
0
 public ClockEntry(ClockOp op, bool comboNext)
 {
     _op = op;
     _comboNext = comboNext;
 }
Exemple #4
0
 public ClockEntry(C64Interfaces.IFile stateFile, ClockOpFactory factory)
 {
     _op = factory.CreateFromStateFile(stateFile);
     _comboNext = stateFile.ReadBool();
 }
Exemple #5
0
 public ClockEntry(ClockOp op)
 {
     _op = op;
     _comboNext = false;
 }