Skip to content

Commit

Permalink
fix parameter assignments and instance name
Browse files Browse the repository at this point in the history
  • Loading branch information
taichi-ishitani committed Feb 16, 2024
1 parent c27e013 commit 9649e97
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 4 additions & 2 deletions pzcorebus_m_to_1_switch/pzcorebus_request_m_to_1_switch.sv
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ module pzcorebus_request_m_to_1_switch
.RELAX_MODE (1 ),
.SLAVE_FIFO (1 ),
.COMMAND_DEPTH (COMMAND_DEPTH ),
.DATA_DEPTH (DATA_DEPTH )
.DATA_DEPTH (DATA_DEPTH ),
.SVA_CHECKER (0 )
) u_aligner (
.i_clk (i_clk ),
.i_rst_n (i_rst_n ),
Expand All @@ -262,7 +263,8 @@ module pzcorebus_request_m_to_1_switch
.COMMAND_DEPTH (COMMAND_DEPTH ),
.COMMAND_VALID (MASTER_FIFO ),
.DATA_DEPTH (DATA_DEPTH ),
.DATA_VALID (MASTER_FIFO )
.DATA_VALID (MASTER_FIFO ),
.SVA_CHECKER (0 )
) u_fifo (
.i_clk (i_clk ),
.i_rst_n (i_rst_n ),
Expand Down
9 changes: 5 additions & 4 deletions pzcorebus_m_to_1_switch/pzcorebus_response_m_to_1_switch.sv
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ module pzcorebus_response_m_to_1_switch
//--------------------------------------------------------------
for (genvar i = 0;i < SLAVES;++i) begin : g_slave_fifo
pzcorebus_response_fifo #(
.BUS_CONFIG (BUS_CONFIG ),
.DEPTH (RESPONSE_DEPTH ),
.VALID (SLAVE_FIFO )
.BUS_CONFIG (BUS_CONFIG ),
.DEPTH (RESPONSE_DEPTH ),
.VALID (SLAVE_FIFO ),
.SVA_CHECKER (0 )
) u_slave_fifo (
.i_clk (i_clk ),
.i_rst_n (i_rst_n ),
Expand Down Expand Up @@ -97,7 +98,7 @@ module pzcorebus_response_m_to_1_switch
.DEPTH (RESPONSE_DEPTH ),
.VALID (MASTER_FIFO ),
.SVA_CHECKER (SVA_CHECKER )
) u_slave_fifo (
) u_master_fifo (
.i_clk (i_clk ),
.i_rst_n (i_rst_n ),
.i_clear ('0 ),
Expand Down

0 comments on commit 9649e97

Please sign in to comment.