Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.4.12--concat_op.sv
blob: 9afdb34ae27e18ebf0f0c4ddf4c4bdf35ca0e8c5 [
file
] [
log
] [
blame
] [
edit
]
/*
:name: concat_op
:description: concatenation operator test
:should_fail: 0
:tags: 11.4.12
*/
module
top
();
bit
[
15
:
0
]
a
;
bit
[
7
:
0
]
b
=
8
'b10101100;
bit [7:0] c = 8'
b01010011
;
initial
begin
a
=
{
b
,
c
};
end
endmodule