Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.5.1--non_idx_part_select.sv
blob: cd95181e74dc9693ec74e49e045ea5aaf08e791b [
file
] [
log
] [
blame
]
/*
:name: non_idx_part_select
:description: non-indexed part-select bit test
:should_fail: 0
:tags: 11.5.1
*/
module
top
();
logic
[
15
:
0
]
a
;
logic
[
3
:
0
]
b
;
initial
begin
b
=
a
[
11
:
8
];
end
endmodule