Commit 50d00f9d by Zachary Snow

placate VCS in packed_array_shadow test

parent 2d003c6d
module top; module top;
logic [6:0][3:0] arr;
initial arr = 28'h9fba7d;
function parity; function parity;
input [3:0] arr; input [3:0] arr;
parity = arr[2] ^ arr[2] ^ arr[1] ^ arr[0]; parity = arr[2] ^ arr[2] ^ arr[1] ^ arr[0];
...@@ -35,9 +38,6 @@ module top; ...@@ -35,9 +38,6 @@ module top;
end end
endtask endtask
logic [6:0][3:0] arr;
initial arr = 28'h9fba7d;
integer i; integer i;
initial begin initial begin
for (i = 0; i < 7; i += 1) begin for (i = 0; i < 7; i += 1) begin
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment