diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-02-28 16:44:15 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-03-03 20:42:36 -0600 |
| commit | cce507d21c86f20a83eec1b09fe3231399ffb10c (patch) | |
| tree | cef497f3eb1767aeb9d8817adbbed467eac3b72d /rtl/dma_axi32/dma_axi32_apb_mux.v | |
| parent | 872349eb3a3a508abee028e75da546692eb8e0e7 (diff) | |
rtl/dma_axi32: fix verilator warnings
Diffstat (limited to 'rtl/dma_axi32/dma_axi32_apb_mux.v')
| -rw-r--r-- | rtl/dma_axi32/dma_axi32_apb_mux.v | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/rtl/dma_axi32/dma_axi32_apb_mux.v b/rtl/dma_axi32/dma_axi32_apb_mux.v index ae11db7..8d9fd82 100644 --- a/rtl/dma_axi32/dma_axi32_apb_mux.v +++ b/rtl/dma_axi32/dma_axi32_apb_mux.v @@ -1,3 +1,5 @@ +// verilator lint_off WIDTHEXPAND +// verilator lint_off WIDTHTRUNC /////////////////////////////////////////////////////////////////////
//// ////
//// Author: Eyal Hochberg ////
@@ -82,12 +84,14 @@ module dma_axi32_apb_mux (clk,reset,pclken,psel,penable,pwrite,paddr,prdata,psl always @(posedge clk or posedge reset) if (reset) - pready <= #1 1'b0; + pready <= 1'b0; else if (pclken) - pready <= #1 psel & (~penable); + pready <= psel & (~penable); endmodule +// verilator lint_on WIDTHEXPAND +// verilator lint_on WIDTHTRUNC |
