From: Luke Kenneth Casson Leighton Date: Mon, 18 Feb 2019 21:11:47 +0000 (+0000) Subject: of.guard, of.round, of.sticky - of is a class with members "guard, round etc" X-Git-Tag: ls180-24jan2020~1888 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c530bcd516416b79cc3c98ba6884ef62e0731084;p=ieee754fpu.git of.guard, of.round, of.sticky - of is a class with members "guard, round etc" --- diff --git a/src/add/fmul.py b/src/add/fmul.py index e98b943d..1e507a04 100644 --- a/src/add/fmul.py +++ b/src/add/fmul.py @@ -106,9 +106,9 @@ class FPMUL(FPBase): m.next = "normalise_1" m.d.sync += [ z.m.eq(product[26:50]), - guard.eq(product[25]), - round_bit.eq(product[24]), - sticky.eq(product[0:23] != 0) + of.guard.eq(product[25]), + of.round_bit.eq(product[24]), + of.sticky.eq(product[0:23] != 0) ] # ******