From 9771d80fd1b42653843eddc599707d4953fece04 Mon Sep 17 00:00:00 2001 From: Fischer Moseley <42497969+fischermoseley@users.noreply.github.com> Date: Sun, 9 Jul 2023 18:23:04 -0700 Subject: [PATCH] replace logic nettype with reg --- src/manta/ether_iface/crc32.v | 2 +- src/manta/ether_iface/firewall.v | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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;