Skip to content

Commit

Permalink
[rtl] minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Oct 5, 2024
1 parent 3e2f744 commit b1762ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rtl/core/neorv32_cpu_lsu.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ begin
dbus_req_o.fence <= ctrl_i.lsu_fence; -- this is valid without STB being set


-- Data Input Alignment and Sign-Extension ------------------------------------------------
-- Data Input: Alignment and Sign-Extension -----------------------------------------------
-- -------------------------------------------------------------------------------------------
mem_di_reg: process(rstn_i, clk_i)
begin
Expand Down
2 changes: 1 addition & 1 deletion rtl/core/neorv32_package.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ package neorv32_package is

-- Architecture Constants -----------------------------------------------------------------
-- -------------------------------------------------------------------------------------------
constant hw_version_c : std_ulogic_vector(31 downto 0) := x"01100502"; -- hardware version
constant hw_version_c : std_ulogic_vector(31 downto 0) := x"01100503"; -- hardware version
constant archid_c : natural := 19; -- official RISC-V architecture ID
constant XLEN : natural := 32; -- native data path width

Expand Down
2 changes: 1 addition & 1 deletion rtl/core/neorv32_top.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ begin
port map (
-- global control --
clk_i => clk_cpu, -- switchable clock
clk_aux_i => clk_i,
clk_aux_i => clk_i, -- always-on clock
rstn_i => rstn_sys,
sleep_o => cpu_sleep,
debug_o => cpu_debug,
Expand Down

0 comments on commit b1762ca

Please sign in to comment.