Skip to content
Snippets Groups Projects
Verified Commit 87baa932 authored by Byron Lathi's avatar Byron Lathi
Browse files

Clean up

parent efeca55a
No related branches found
No related tags found
1 merge request!74Resolve "Network Processor"
......@@ -309,8 +309,6 @@ ip_arb_mux_wrapper #(
.m_ip (ntw_tx_ip)
);
axil_intf dummy();
tcp #(
.NUM_TCP(NUM_TCP)
) tcp (
......
......@@ -81,14 +81,14 @@ always_comb begin
16: m_ip.ip_payload_axis_tdata = checksum[15:8];
17: m_ip.ip_payload_axis_tdata = checksum[7: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_tlast = '1;
end
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;
......
......@@ -68,7 +68,7 @@ always_comb begin
end
SYN_SENT: begin
$display("SYN_SENT not implemented");
// $display("SYN_SENT not implemented");
end
endcase
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment