Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
2b38692156ff2742b1c4c94d3b93df97f2145e0c
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00642
/
top.v
blob: c574209b67417e028b77571f9a283fd6325f568d [
file
]
module
top
(
clk
,
in
,
out
);
parameter DEPTH
=
10
;
input wire clk
,
in
;
output reg
out
;
always
@(
posedge clk
)
out
<=
$past
(
in
,
DEPTH
-
1
);
endmodule