Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.10.1--string_compare.sv
blob: 3faafebee3883e59b2efd838e384777f9887848a [
file
] [
log
] [
blame
]
/*
:name: string_compare
:description: string comparison test
:should_fail: 0
:tags: 11.10.1
*/
module
top
();
bit
[
8
*
14
:
1
]
a
;
bit
[
8
*
14
:
1
]
b
;
initial
begin
a
=
"Test"
;
b
=
"Test"
;
$display
(
a
==
b
);
end
endmodule