diff --git a/lib/CPUs/MIPS/src/core/mips_top.vhd b/lib/CPUs/MIPS/src/core/mips_top.vhd index 268028f..fa36d2f 100644 --- a/lib/CPUs/MIPS/src/core/mips_top.vhd +++ b/lib/CPUs/MIPS/src/core/mips_top.vhd @@ -67,7 +67,6 @@ architecture rtl of mips_top is rst : in STD_LOGIC; clk : in STD_LOGIC; ce : in STD_LOGIC; - int : in unsigned (5 downto 0); imem_err : in STD_LOGIC; imem_rdy : in STD_LOGIC; imem_en : out STD_LOGIC; @@ -129,6 +128,7 @@ architecture rtl of mips_top is ( rst : in STD_LOGIC; clk : in STD_LOGIC; + int : in unsigned (5 downto 0); ir_en : in STD_LOGIC; ir : in word_t; ctrl_in : in cop0_ctrl_in_t; @@ -216,7 +216,6 @@ inst_pipeline: pipeline rst => cpu_rst, clk => CLK_I, ce => cpu_run, - int => INT, imem_err => imem_err, imem_rdy => imem_rdy, imem_en => imem_en, @@ -250,6 +249,7 @@ inst_cop: cop ( rst => cpu_rst, clk => CLK_I, + int => INT, ir_en => pipe_cop_ir_en, ir => pipe_cop_ir, ctrl_in => pipe_c0_ctrl_out,