Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.4.14.3--unpack_stream.sv
blob: fc622982d891d7745246fa8f65ebd202ff008954 [
file
] [
log
] [
blame
]
/*
:name: unpack_stream
:description: stream unpack test
:should_fail: 0
:tags: 11.4.14.3
*/
module
top
();
int
a
=
1
;
int
b
=
2
;
int
c
=
3
;
initial
begin
bit
[
95
:
0
]
d
=
{<<{
a
,
b
,
c
}};
end
endmodule