projects
/
ieee754fpu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5325ab
)
add a couple of example names to one of the pipeline stages
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Wed, 20 Mar 2019 10:55:23 +0000
(10:55 +0000)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Wed, 20 Mar 2019 10:55:23 +0000
(10:55 +0000)
src/add/example_buf_pipe.py
patch
|
blob
|
history
diff --git
a/src/add/example_buf_pipe.py
b/src/add/example_buf_pipe.py
index c399570a1aae7d6e19e27bd701cfff2e43906278..a91b50842393ac38d7d02400eff258541e0f633a 100644
(file)
--- 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)