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