public PitModeScheduleDecoder()
 {
     pitSchedule = new TopFourBitDecoder();
     pitMode     = new BottomFourBitDecoder();
 }
 public HighestFlagDecoder()
 {
     flagReason = new TopFourBitDecoder();
     flagColour = new BottomFourBitDecoder();
 }
Beispiel #3
0
 public SectorDecoder()
 {
     zExtraPrecision = new TopTwoBitDecoder();
     xExtraPrecision = new SecondTwoBitDecoder();
     sector          = new BottomFourBitDecoder();
 }
Beispiel #4
0
 public GameStateDecoder()
 {
     sessionState = new TopFourBitDecoder();
     gameState    = new BottomFourBitDecoder();
 }
Beispiel #5
0
 public GearNumGearsDecoder()
 {
     numGears = new TopFourBitDecoder();
     gear     = new BottomFourBitDecoder();
 }