mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-23 13:27:10 -04:00
[DV] Tie test_en_i to zero
- test_en_i is a DFT feature that shouldn't be enabled for normal runtime testing - Only really affects the clock gate in the design, but is needed for running tests with the latch-based register file Signed-off-by: Tom Roberts <tomroberts@lowrisc.org>
This commit is contained in:
parent
f26cc9bb58
commit
7e1852024a
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ module core_ibex_tb_top;
|
|||
) dut (
|
||||
.clk_i (clk ),
|
||||
.rst_ni (rst_n ),
|
||||
.test_en_i (1'b1 ),
|
||||
.test_en_i (1'b0 ),
|
||||
.hart_id_i (32'b0 ),
|
||||
.boot_addr_i (`BOOT_ADDR ), // align with spike boot address
|
||||
.irq_software_i (irq_vif.irq_software ),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue