test/benchmark: default value of run is 1, no need to drive it.

This commit is contained in:
Florent Kermarrec 2020-04-14 13:00:39 +02:00
parent 7c5e1e79da
commit b399ae2e36
1 changed files with 0 additions and 2 deletions

View File

@ -140,7 +140,6 @@ class LiteDRAMBenchmarkSoC(SimSoC):
else:
fsm.act("BIST-GENERATOR",
combined_write(generators, "start").eq(1),
combined_write(generators, "run").eq(1),
*map(bist_config, generators),
If(combined_read(generators, "done", and_),
NextState("BIST-CHECKER")
@ -148,7 +147,6 @@ class LiteDRAMBenchmarkSoC(SimSoC):
)
fsm.act("BIST-CHECKER",
combined_write(checkers, "start").eq(1),
combined_write(checkers, "run").eq(1),
*map(bist_config, checkers),
If(combined_read(checkers, "done", and_),
NextState("DISPLAY")