Fix argument order to match function declaration
authorCesar Strauss <cestrauss@gmail.com>
Sun, 7 Mar 2021 22:32:45 +0000 (19:32 -0300)
committerCesar Strauss <cestrauss@gmail.com>
Mon, 8 Mar 2021 10:12:02 +0000 (07:12 -0300)
No harm was done, since the second inversion undid the first.
Just the VCD traces were switched.

src/soc/simple/issuer.py

index ca561f8b0e1a609bafc468639a8395ef8f1442d9..42fd3362e7423584baf69b62f89e0d178f0a6701 100644 (file)
@@ -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