test/benchmark: default value of run is 1, no need to drive it.
This commit is contained in:
parent
7c5e1e79da
commit
b399ae2e36
|
@ -140,7 +140,6 @@ class LiteDRAMBenchmarkSoC(SimSoC):
|
||||||
else:
|
else:
|
||||||
fsm.act("BIST-GENERATOR",
|
fsm.act("BIST-GENERATOR",
|
||||||
combined_write(generators, "start").eq(1),
|
combined_write(generators, "start").eq(1),
|
||||||
combined_write(generators, "run").eq(1),
|
|
||||||
*map(bist_config, generators),
|
*map(bist_config, generators),
|
||||||
If(combined_read(generators, "done", and_),
|
If(combined_read(generators, "done", and_),
|
||||||
NextState("BIST-CHECKER")
|
NextState("BIST-CHECKER")
|
||||||
|
@ -148,7 +147,6 @@ class LiteDRAMBenchmarkSoC(SimSoC):
|
||||||
)
|
)
|
||||||
fsm.act("BIST-CHECKER",
|
fsm.act("BIST-CHECKER",
|
||||||
combined_write(checkers, "start").eq(1),
|
combined_write(checkers, "start").eq(1),
|
||||||
combined_write(checkers, "run").eq(1),
|
|
||||||
*map(bist_config, checkers),
|
*map(bist_config, checkers),
|
||||||
If(combined_read(checkers, "done", and_),
|
If(combined_read(checkers, "done", and_),
|
||||||
NextState("DISPLAY")
|
NextState("DISPLAY")
|
||||||
|
|
Loading…
Reference in New Issue