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)
);
axil_intf dummy();
tcp #(
.NUM_TCP(NUM_TCP)
) tcp (

View File

@@ -88,7 +88,7 @@ always_comb begin
endcase
if (m_ip.ip_payload_axis_tready) begin
counter_next <= counter + 1;
counter_next = counter + 1;
if (m_ip.ip_payload_axis_tlast) begin
state_next = IDLE;

View File

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