add exhaustive case

This commit is contained in:
Mark Canlas 2022-02-14 11:50:52 -05:00
parent f3bfa0b42f
commit b96a9c3a55

View File

@ -247,6 +247,7 @@ object MatchOpcodes {
case 1 => c01(aaa, bbb)
case 2 => c10(aaa, bbb)
case 3 => None
case _ => throw new IllegalStateException("two bits did not result in two-bit number")
}
}
}