Compare commits
No commits in common. "1ccd1b0072fdee2d43499b35a84360f532bd6b6d" and "5df41d4b94f346f598629d66849c2c7ec0e0e12d" have entirely different histories.
1ccd1b0072
...
5df41d4b94
|
@ -77,11 +77,6 @@ module mkDelayLine(Integer delay_cycles, DelayLine#(a) ifc)
|
||||||
delay = cons(r, delay);
|
delay = cons(r, delay);
|
||||||
end
|
end
|
||||||
|
|
||||||
// pump_line ingests a new value into the first register in the
|
|
||||||
// line, and shifts older values one register down. The
|
|
||||||
// registers always shift forward even when nobody's writing, in
|
|
||||||
// which case that slot in the pipeline is occupied by an empty
|
|
||||||
// Maybe.
|
|
||||||
(* no_implicit_conditions, fire_when_enabled *)
|
(* no_implicit_conditions, fire_when_enabled *)
|
||||||
rule pump_line;
|
rule pump_line;
|
||||||
delay[0] <= inputVal.wget();
|
delay[0] <= inputVal.wget();
|
||||||
|
|
1
tasks.py
1
tasks.py
|
@ -180,6 +180,7 @@ def test(c, target):
|
||||||
testdata_tgt = testdata_tgt.relative_to(out_sim, walk_up=True)
|
testdata_tgt = testdata_tgt.relative_to(out_sim, walk_up=True)
|
||||||
testdata.unlink(missing_ok=True)
|
testdata.unlink(missing_ok=True)
|
||||||
testdata.symlink_to(testdata_tgt, target_is_directory=True)
|
testdata.symlink_to(testdata_tgt, target_is_directory=True)
|
||||||
|
print("before run")
|
||||||
with c.cd(out_sim):
|
with c.cd(out_sim):
|
||||||
c.run(f"./TB -V {target.stem}.vcd")
|
c.run(f"./TB -V {target.stem}.vcd")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue