verilator/test_regress/t/t_assoc_wildcard.v
2024-10-03 18:14:53 -04:00

55 lines
1.7 KiB
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2019 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
`define stop $stop
`define checkh(gotv,expv) do if ((gotv) !== (expv)) begin $write("%%Error: %s:%0d: got='h%x exp='h%x\n", `__FILE__,`__LINE__, (gotv), (expv)); `stop; end while(0);
`define checks(gotv,expv) do if ((gotv) != (expv)) begin $write("%%Error: %s:%0d: got='%s' exp='%s'\n", `__FILE__,`__LINE__, (gotv), (expv)); `stop; end while(0);
module t (/*AUTOARG*/
// Inputs
clk
);
input clk;
integer cyc = 0;
integer i;
always @ (posedge clk) begin
cyc <= cyc + 1;
begin
// Wildcard
typedef string dict_t [*];
string a [*] = '{default: "nope", "BBBBB": "fooing", 23'h434343: "baring"};
dict_t b = '{default: "nope", "BBBBB": "fooing", 23'h434343: "baring"};
int k;
string v;
v = b["CCC"]; `checks(v, "baring");
v = b["BBBBB"]; `checks(v, "fooing");
v = a["CCC"]; `checks(v, "baring");
v = a["BBBBB"]; `checks(v, "fooing");
a[32'd1234] = "fooed";
a[4'd3] = "bared";
a[79'h4141] = "bazed";
i = a.num(); `checkh(i, 5);
i = a.size(); `checkh(i, 5);
v = a[39'd1234]; `checks(v, "fooed");
v = a["AA"]; `checks(v, "bazed");
v = a[4'd3]; `checks(v, "bared");
i = a.exists("baz"); `checkh(i, 0);
i = a.exists(4'd3); `checkh(i, 1);
a.delete(4'd3);
i = a.size(); `checkh(i, 4);
end
$write("*-* All Finished *-*\n");
$finish;
end
endmodule