turn SelectableInt less/greater into signed versions.
[soc.git] / src / soc / fu / common_input_stage.py
index 4dbb5c0712a59ac3451061071d6f907037aa69fb..745be7726b032fa29b6d4cbbfe45c2140c90e0b7 100644 (file)
@@ -40,6 +40,9 @@ class CommonInputStage(PipeModBase):
                     comb += self.o.xer_ca.eq(0b11) # XER CA/CA32
                 with m.Case(CryIn.CA):
                     comb += self.o.xer_ca.eq(self.i.xer_ca)
+                # XXX TODO
+                #with m.Case(CryIn.OV):
+                #    comb += self.o.xer_ca.eq(self.i.xer_ov)
 
         ##### sticky overflow and context (both pass-through) #####