Skip to content

Commit

Permalink
[rtl] cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Feb 3, 2025
1 parent 0879ae4 commit 2985e51
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions rtl/core/neorv32_cache.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,6 @@ begin
end process ctrl_engine_sync;


-- [TODO] register stage for host_req_i on direct access


-- Control Engine FSM Comb ----------------------------------------------------------------
-- -------------------------------------------------------------------------------------------
ctrl_engine_comb: process(ctrl, addr, host_req_i, bus_rsp_i, cache_i)
Expand Down Expand Up @@ -581,12 +578,12 @@ begin
data_mem_b3(to_integer(unsigned(acc_adr))) <= wdata_i(31 downto 24);
end if;
-- read access --
rdata_o(07 downto 00) <= data_mem_b0(to_integer(unsigned(acc_adr)));
rdata_o(15 downto 08) <= data_mem_b1(to_integer(unsigned(acc_adr)));
rdata_o(7 downto 0) <= data_mem_b0(to_integer(unsigned(acc_adr)));
rdata_o(15 downto 8) <= data_mem_b1(to_integer(unsigned(acc_adr)));
rdata_o(23 downto 16) <= data_mem_b2(to_integer(unsigned(acc_adr)));
rdata_o(31 downto 24) <= data_mem_b3(to_integer(unsigned(acc_adr)));
end if;
end process cache_mem_access;


end neorv32_cache_memory_rtl;
end neorv32_cache_memory_rtl;

0 comments on commit 2985e51

Please sign in to comment.