This commit is contained in:
Byron Lathi
2024-09-02 22:39:44 -07:00
parent efeca55a6c
commit 87baa932f8
3 changed files with 3 additions and 5 deletions

View File

@@ -309,8 +309,6 @@ ip_arb_mux_wrapper #(
.m_ip (ntw_tx_ip) .m_ip (ntw_tx_ip)
); );
axil_intf dummy();
tcp #( tcp #(
.NUM_TCP(NUM_TCP) .NUM_TCP(NUM_TCP)
) tcp ( ) tcp (

View File

@@ -81,14 +81,14 @@ always_comb begin
16: m_ip.ip_payload_axis_tdata = checksum[15:8]; 16: m_ip.ip_payload_axis_tdata = checksum[15:8];
17: m_ip.ip_payload_axis_tdata = checksum[7:0]; 17: m_ip.ip_payload_axis_tdata = checksum[7:0];
18: m_ip.ip_payload_axis_tdata = '0; 18: m_ip.ip_payload_axis_tdata = '0;
19: begin 19: begin
m_ip.ip_payload_axis_tdata = '0; m_ip.ip_payload_axis_tdata = '0;
m_ip.ip_payload_axis_tlast = '1; m_ip.ip_payload_axis_tlast = '1;
end end
endcase endcase
if (m_ip.ip_payload_axis_tready) begin if (m_ip.ip_payload_axis_tready) begin
counter_next <= counter + 1; counter_next = counter + 1;
if (m_ip.ip_payload_axis_tlast) begin if (m_ip.ip_payload_axis_tlast) begin
state_next = IDLE; state_next = IDLE;

View File

@@ -68,7 +68,7 @@ always_comb begin
end end
SYN_SENT: begin SYN_SENT: begin
$display("SYN_SENT not implemented"); // $display("SYN_SENT not implemented");
end end
endcase endcase
end end