Skip to content

Commit

Permalink
hsoc: add optional rst_i inverter
Browse files Browse the repository at this point in the history
  • Loading branch information
saursin committed Dec 26, 2023
1 parent 15da939 commit 2a8b434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/soc/hydrogensoc/HydrogenSoC.v
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module HydrogenSoC(
`endif
);
wire wb_clk_i = clk_i;
wire wb_rst_i = rst_i;
wire wb_rst_i = `INLINE_IFDEF(SOC_INVERT_RST, ~rst_i, rst_i);

// ******************** Core ********************
wire [31:0] core_iport_wb_adr_o;
Expand Down

0 comments on commit 2a8b434

Please sign in to comment.