Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
pr547.v
blob: 9252df2fd814e0feba15266f2aa111d3e154e5cc [
file
] [
log
] [
blame
] [
edit
]
module
top
;
reg
[
9
:
0
]
a
;
reg b
;
initial
begin
a
=
10
'h3ff;
b = a[15];
$display("A = %h, b = %b", a, b);
end // initial begin
endmodule // top