diff --git a/lib/CPUs/JCpu/src/core/cpu.vhd b/lib/CPUs/JCpu/src/core/cpu.vhd index 06aeb33..78eb82a 100644 --- a/lib/CPUs/JCpu/src/core/cpu.vhd +++ b/lib/CPUs/JCpu/src/core/cpu.vhd @@ -39,7 +39,6 @@ entity cpu is ce : in STD_LOGIC; int_in : in STD_LOGIC; int_ack : out STD_LOGIC; - xmem_wait : in STD_LOGIC; xmem_we : out STD_LOGIC; xmem_re : out STD_LOGIC; instr_din : in unsigned (IMEM_DATA_WIDTH-1 downto 0); @@ -215,7 +214,6 @@ begin pc_inc <= cpu_active and ctrl.lines.pc_inc; stk_addr <= '0' & stk_ptr; cpu_status.alu <= alu_status; - cpu_status.xmem_wait <= xmem_wait; creg_ctrl_in.alu <= alu_status; xmem_dout <= mem_data;