diff --git a/src/manta/ether_iface/crc32.v b/src/manta/ether_iface/crc32.v index f3802a7..51e4397 100644 --- a/src/manta/ether_iface/crc32.v +++ b/src/manta/ether_iface/crc32.v @@ -28,7 +28,7 @@ module crc32( output reg axiov, output reg [31:0] axiod); - logic[31:0] caxiod, saxiod; + reg [31:0] caxiod, saxiod; initial caxiod = 32'hFFFF_FFFF; integer i; diff --git a/src/manta/ether_iface/firewall.v b/src/manta/ether_iface/firewall.v index 8da52ab..611e310 100644 --- a/src/manta/ether_iface/firewall.v +++ b/src/manta/ether_iface/firewall.v @@ -20,12 +20,12 @@ module firewall ( /* Buffers to hold our MAC address in the reverse order, * to make comparison easier than it otherwise would be */ - logic[0:47] me; + reg [0:47] me; /* A counter, to determine whether we should be comparing * with a MAC address or stripping off data */ - logic[31:0] counter; + reg [31:0] counter; /* An internal set of flags to mark whether the currently * traversing packet is valid, i.e we should forward data, @@ -36,7 +36,7 @@ module firewall ( * destination MAC finishes rolling through, the packet * is forwarded. */ - logic matchme, matchbcast; + reg matchme, matchbcast; assign me = FPGA_MAC;