From: Luke Kenneth Casson Leighton Date: Wed, 20 Mar 2019 10:55:23 +0000 (+0000) Subject: add a couple of example names to one of the pipeline stages X-Git-Tag: ls180-24jan2020~1622 X-Git-Url: https://git.libre-soc.org/?p=ieee754fpu.git;a=commitdiff_plain;h=94f4ce1c9675dddd323a50624ae22f9e9406be61 add a couple of example names to one of the pipeline stages --- diff --git a/src/add/example_buf_pipe.py b/src/add/example_buf_pipe.py index c399570a..a91b5084 100644 --- a/src/add/example_buf_pipe.py +++ b/src/add/example_buf_pipe.py @@ -322,10 +322,10 @@ class ExampleStage: """ def ispec(): - return Signal(16) + return Signal(16, name="example_input_signal") def ospec(): - return Signal(16) + return Signal(16, name="example_output_signal") def process(i): """ process the input data and returns it (adds 1)