comment where ALUIntermediateData to go
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 9 May 2020 14:06:02 +0000 (15:06 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 9 May 2020 14:06:02 +0000 (15:06 +0100)
src/soc/alu/main_stage.py
src/soc/alu/output_stage.py

index 07fb0180de7d73f627386a3d847dd56ded43aadd..7d79b1a187a303fce461149bd5610ac6ab58659e 100644 (file)
@@ -18,7 +18,7 @@ class ALUMainStage(PipeModBase):
         return ALUInputData(self.pspec)
 
     def ospec(self):
-        return ALUOutputData(self.pspec)
+        return ALUOutputData(self.pspec) # TODO: ALUIntermediateData
 
     def elaborate(self, platform):
         m = Module()
index 1a8a82b620149ce83aceabe8a0cf6262e7ab58b0..188ea4ab0f021db9585e172ced2bc144b4368d3e 100644 (file)
@@ -13,7 +13,7 @@ class ALUOutputStage(PipeModBase):
         super().__init__(pspec, "output")
 
     def ispec(self):
-        return ALUOutputData(self.pspec)
+        return ALUOutputData(self.pspec) # TODO: ALUIntermediateData
 
     def ospec(self):
         return ALUOutputData(self.pspec)