projects
/
ieee754fpu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f52eae
)
generate il file before running simulation, test 7
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sat, 20 Apr 2019 09:20:02 +0000
(10:20 +0100)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sat, 20 Apr 2019 09:20:02 +0000
(10:20 +0100)
src/add/test_buf_pipe.py
patch
|
blob
|
history
diff --git
a/src/add/test_buf_pipe.py
b/src/add/test_buf_pipe.py
index f88d30057714e0379b17dcf4f10a1343b641ffe0..ee1734e88a16c31c09ca25104c8b0087084bfe2a 100644
(file)
--- a/
src/add/test_buf_pipe.py
+++ b/
src/add/test_buf_pipe.py
@@
-1063,8
+1063,6
@@
if __name__ == '__main__':
dut = ExampleAddRecordPipe()
data=data_dict()
test = Test5(dut, resultfn_7, data=data)
- run_simulation(dut, [test.send, test.rcv], vcd_name="test_addrecord.vcd")
-
ports = [dut.p.i_valid, dut.n.i_ready,
dut.n.o_valid, dut.p.o_ready,
dut.p.i_data.src1, dut.p.i_data.src2,
@@
-1072,6
+1070,7
@@
if __name__ == '__main__':
vl = rtlil.convert(dut, ports=ports)
with open("test_recordcomb_pipe.il", "w") as f:
f.write(vl)
+ run_simulation(dut, [test.send, test.rcv], vcd_name="test_addrecord.vcd")
print ("test 8")
dut = ExampleBufPipeAddClass()