Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.10--string_bit_array.sv
blob: 34aff7e56ba839df66e41405fa23a95440ad832e [
file
] [
log
] [
blame
]
/*
:name: string_bit_array
:description: string stored in bit array test
:should_fail: 0
:tags: 11.10
*/
module
top
();
bit
[
8
*
14
:
1
]
a
;
initial
begin
a
=
"Test"
;
end
endmodule