mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 21:07:34 -04:00
Use correct width for 1-bit inputs in ibex_simple_system.sv
Not a big deal, but this silences a warning from some simulators.
This commit is contained in:
parent
9f83cbd2b4
commit
ce552f2e27
1 changed files with 2 additions and 2 deletions
|
@ -210,7 +210,7 @@ module ibex_simple_system (
|
|||
.clk_i (clk_sys),
|
||||
.rst_ni (rst_sys_n),
|
||||
|
||||
.test_en_i ('b0),
|
||||
.test_en_i (1'b0),
|
||||
.scan_rst_ni (1'b1),
|
||||
.ram_cfg_i (prim_ram_1p_pkg::RAM_1P_CFG_DEFAULT),
|
||||
|
||||
|
@ -249,7 +249,7 @@ module ibex_simple_system (
|
|||
.scramble_nonce_i ('0),
|
||||
.scramble_req_o (),
|
||||
|
||||
.debug_req_i ('b0),
|
||||
.debug_req_i (1'b0),
|
||||
.crash_dump_o (),
|
||||
.double_fault_seen_o (),
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue