Skip to content

Commit c89bd9f

Browse files
committed
debug signals
1 parent e983956 commit c89bd9f

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

rtl/axis_gmii_tx.v

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ module axis_gmii_tx #
101101
output wire cfg_tx_enable_out,
102102
output wire start_packet_out,
103103
output wire error_underflow_out,
104-
output [2:0] state_reg_out,
104+
output wire [2:0] state_reg_out,
105105

106106
output wire [DATA_WIDTH-1:0] gmii_txd_out,
107107
output wire gmii_tx_en_out,
@@ -182,10 +182,9 @@ assign error_underflow = error_underflow_reg;
182182
// debug
183183

184184
assign clk_out =clk;
185-
assign s_axis_tdata_out=s_axis_tdata;
186-
assign s_axis_tvalid_out=s_axis_tvalid;
187-
assign s_axis_tready_out=s_axis_tready;
188-
assign s_axis_tlast_out=s_axis_tlast;
185+
assign tdata_out=s_axis_tdata;
186+
assign talid_out=s_axis_tvalid;
187+
assign tlast_out=s_axis_tlast;
189188
assign clk_enable_out=clk_enable;
190189
assign mii_select_out=mii_select;
191190
assign cfg_tx_enable_out=cfg_tx_enable;

0 commit comments

Comments
 (0)