From: Cesar Strauss Date: Sun, 24 May 2020 19:48:46 +0000 (-0300) Subject: Avoid overwriting the first vcd file with the second one X-Git-Tag: div_pipeline~863 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5553d88b5835731e781cec4b800399a719e3d122;p=soc.git Avoid overwriting the first vcd file with the second one --- diff --git a/src/soc/experiment/compalu_multi.py b/src/soc/experiment/compalu_multi.py index 10d3ae79..a9730bf2 100644 --- a/src/soc/experiment/compalu_multi.py +++ b/src/soc/experiment/compalu_multi.py @@ -394,7 +394,7 @@ def test_compunit_regspec1(): with open("test_compunit_regspec1.il", "w") as f: f.write(vl) - run_simulation(m, scoreboard_sim(dut), vcd_name='test_compunit1.vcd') + run_simulation(m, scoreboard_sim(dut), vcd_name='test_compunit_regspec1.vcd') if __name__ == '__main__':