From: Cesar Strauss Date: Sun, 7 Mar 2021 22:32:45 +0000 (-0300) Subject: Fix argument order to match function declaration X-Git-Tag: convert-csv-opcode-to-binary~88 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b5c06936b122618019512ac51a71059c559e7425;p=soc.git Fix argument order to match function declaration No harm was done, since the second inversion undid the first. Just the VCD traces were switched. --- 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