From b399ae2e36097dd607298aacd9d8dabe51abfd64 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 14 Apr 2020 13:00:39 +0200 Subject: [PATCH] test/benchmark: default value of run is 1, no need to drive it. --- test/benchmark.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/benchmark.py b/test/benchmark.py index e3e6cf7..7513a69 100755 --- a/test/benchmark.py +++ b/test/benchmark.py @@ -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")