21 lines
361 B
Coq
21 lines
361 B
Coq
|
|
module test();
|
||
|
|
|
||
|
|
string str1 = "abcd";
|
||
|
|
string str2 = "efgh";
|
||
|
|
|
||
|
|
typedef logic [31:0] vector;
|
||
|
|
|
||
|
|
vector data[1:0];
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
data[0] = vector'(str1);
|
||
|
|
data[1] = vector'(str2);
|
||
|
|
$display("%s %s", data[0], data[1]);
|
||
|
|
if (data[0] === "abcd" && data[1] === "efgh")
|
||
|
|
$display("PASSED");
|
||
|
|
else
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|