split out basic suite tests with refs to new core suite

This commit is contained in:
Zachary Snow
2021-06-25 11:21:47 -06:00
parent bb938f1e0b
commit d95a56286c
389 changed files with 2 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
module top;
typedef struct packed {
bit a, b;
} T;
localparam T FOO [4] = '{
'{ 0, 0 },
'{ 0, 1 },
'{ 1, 0 },
'{ 1, 1 }
};
initial begin
$display(FOO[0].a);
$display(FOO[0].b);
$display(FOO[2].a);
$display(FOO[2].b);
end
endmodule