Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.4.14.3--unpack_stream_pad.sv
blob: d77622575236858c6e7882b4d2f231ce7bcc8258 [
file
] [
log
] [
blame
]
/*
:name: unpack_stream_pad
:description: padded 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
[
127
:
0
]
d
=
{<<{
a
,
b
,
c
}};
end
endmodule