From: Luke Kenneth Casson Leighton Date: Sun, 28 Jul 2019 12:25:06 +0000 (+0100) Subject: add identifying name to FPNumBaseRecord X-Git-Tag: ls180-24jan2020~703 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5669f718ffd745f40ba168189efa8e2d305c978;p=ieee754fpu.git add identifying name to FPNumBaseRecord --- diff --git a/src/ieee754/fpcommon/pack.py b/src/ieee754/fpcommon/pack.py index 1240ca62..a89ec908 100644 --- a/src/ieee754/fpcommon/pack.py +++ b/src/ieee754/fpcommon/pack.py @@ -63,7 +63,7 @@ class FPPackMod(Elaboratable): def elaborate(self, platform): m = Module() - z = FPNumBaseRecord(self.pspec.width, False) + z = FPNumBaseRecord(self.pspec.width, False, name="z") m.submodules.pack_in_z = in_z = FPNumBase(self.i.z) #m.submodules.pack_out_z = out_z = FPNumOut(z) m.d.comb += self.o.ctx.eq(self.i.ctx)