Skip to content

Commit

Permalink
Tie off undriven signals
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Mar 9, 2020
1 parent bbfc899 commit 2b2462a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions rtl/axi_uart_wrapper.v
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ module axi_uart_wrapper
wire psel;
wire penable;
wire pready;
wire pslverr;

wire [7:0] wb_rdt;

Expand Down Expand Up @@ -143,7 +142,7 @@ module axi_uart_wrapper
.PWDATA (pwdata ),
.PRDATA ({24'd0,wb_rdt}),
.PREADY (pready ),
.PSLVERR (pslverr ));
.PSLVERR (1'b0 ));

wire wb_ack;
assign pready = !penable | wb_ack;
Expand Down
2 changes: 2 additions & 0 deletions rtl/swervolf_nexys.v
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ module swervolf_nexys_a7
assign cpu.w_user = 1'b0;
assign cpu.b_user = 1'b0;
assign cpu.r_user = 1'b0;
assign mem.b_user = 1'b0;
assign mem.r_user = 1'b0;

axi_cdc
#(.AXI_USER_WIDTH (1),
Expand Down

0 comments on commit 2b2462a

Please sign in to comment.