Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00098
/
top.v
blob: 8809085d289a0fafa228d8b6f6503365c0d345c1 [
file
] [
log
] [
blame
]
module
top
(
a
,
z
);
input
[
7
:
0
]
a
;
output
[
7
:
0
]
z
;
parameter pos
=
1
;
assign z
=
ff
(
a
);
function
[
7
:
0
]
ff
;
parameter pos2
=
pos
+
1
;
input
[
7
:
0
]
arg1
;
begin
ff
=
arg1
[
pos2
:
0
];
end
endfunction
endmodule