fix mul fu test helper.py not passing immediate to pia for mulli
[soc.git] / src / soc / fu / mul / main_stage.py
index 3d620367d5693b6d41ccdfbe4e57fcbbd930c7bb..68bcf47d5df861ec71708dac7b3b26121a3e4dc4 100644 (file)
@@ -24,6 +24,7 @@ class MulMainStage2(PipeModBase):
         a, b, o = self.i.a, self.i.b, self.o.o
 
         # actual multiply (TODO: split into stages)
+        # it's ironic that one line of code can create 15,000 gates...
         comb += o.eq(a * b)
 
         ###### xer and context, all pass-through #####