From b5c06936b122618019512ac51a71059c559e7425 Mon Sep 17 00:00:00 2001 From: Cesar Strauss Date: Sun, 7 Mar 2021 19:32:45 -0300 Subject: [PATCH] Fix argument order to match function declaration No harm was done, since the second inversion undid the first. Just the VCD traces were switched. --- src/soc/simple/issuer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/simple/issuer.py b/src/soc/simple/issuer.py index ca561f8b..42fd3362 100644 --- a/src/soc/simple/issuer.py +++ b/src/soc/simple/issuer.py @@ -605,11 +605,11 @@ class TestIssuerInternal(Elaboratable): fetch_pc_ready_o, fetch_pc_valid_i, fetch_insn_valid_o, fetch_insn_ready_i, exec_insn_valid_i, exec_insn_ready_o, - exec_pc_ready_i, exec_pc_valid_o) + exec_pc_valid_o, exec_pc_ready_i) self.execute_fsm(m, core, insn_done, pc_changed, sv_changed, exec_insn_valid_i, exec_insn_ready_o, - exec_pc_ready_i, exec_pc_valid_o) + exec_pc_valid_o, exec_pc_ready_i) # this bit doesn't have to be in the FSM: connect up to read # regfiles on demand from DMI -- 2.30.2