Skip to content

Commit

Permalink
Explicitly tie off unused inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
alees24 authored and marnovandermaas committed Nov 5, 2024
1 parent 86a2af0 commit 833ff78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtl/system/sonata_system.sv
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ module sonata_system
.scramble_nonce_i ('0),
.scramble_req_o ( ),

.debug_req_i (),
.debug_req_i (1'b0),
.crash_dump_o (),
.double_fault_seen_o (),

Expand Down Expand Up @@ -1117,7 +1117,7 @@ module sonata_system

// SPI signals.
.spi_copi_o (lcd_copi_o),
.spi_cipo_i (),
.spi_cipo_i (1'b1),
.spi_cs_o ({lcd_rst_o, lcd_dc_o, lcd_cs_o}),
.spi_clk_o (lcd_sclk_o)
);
Expand Down

0 comments on commit 833ff78

Please sign in to comment.