From: Luke Kenneth Casson Leighton Date: Wed, 20 Mar 2019 14:20:23 +0000 (+0000) Subject: use ospec/ispec in FPPackMod X-Git-Tag: ls180-24jan2020~1594 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=568468d85db85bb291a9222c50315a9b5037f125;p=ieee754fpu.git use ospec/ispec in FPPackMod --- diff --git a/src/add/nmigen_add_experiment.py b/src/add/nmigen_add_experiment.py index 45687a08..6f92d68e 100644 --- a/src/add/nmigen_add_experiment.py +++ b/src/add/nmigen_add_experiment.py @@ -1388,8 +1388,15 @@ class FPCorrections(FPState, FPID): class FPPackMod: def __init__(self, width): - self.in_z = FPNumOut(width, False) - self.out_z = FPNumOut(width, False) + self.width = width + self.in_z = self.ispec() + self.out_z = self.ospec() + + def ispec(self): + return FPNumOut(self.width, False) + + def ospec(self): + return FPNumOut(self.width, False) def setup(self, m, in_z): """ links module to inputs and outputs @@ -1413,7 +1420,7 @@ class FPPack(FPState, FPID): FPState.__init__(self, "pack") FPID.__init__(self, id_wid) self.mod = FPPackMod(width) - self.out_z = FPNumOut(width, False) + self.out_z = self.mod.ospec() def setup(self, m, in_z, in_mid): """ links module to inputs and outputs