From 25a892466594952291f03b50c5daf29a1335c11f Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 6 Mar 2019 21:46:01 +0000 Subject: [PATCH] add some comments to FPAddBase --- src/add/nmigen_add_experiment.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/add/nmigen_add_experiment.py b/src/add/nmigen_add_experiment.py index 2f5d9811..fcedea6a 100644 --- a/src/add/nmigen_add_experiment.py +++ b/src/add/nmigen_add_experiment.py @@ -1182,11 +1182,14 @@ class FPADD(FPID): | FPGetOp (b) | - FPAddBase---> GetOps->Specials->Align->Add1/2->Norm->Round/Pack->PutZ - | - PutZ + FPAddBase---> FPAddBaseMod + | | + PutZ GetOps->Specials->Align->Add1/2->Norm->Round/Pack->PutZ FPAddBase is tricky: it is both a stage and *has* stages. + Connection to FPAddBaseMod therefore requires an in stb/ack + and an out stb/ack. Just as with Add1-Norm1 interaction, FPGetOp + needs to be the thing that raises the incoming stb. """ def __init__(self, width, id_wid=None, single_cycle=False): -- 2.30.2