Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
5d8813c36fc3561ecb4c6ab9a579c7fbcb8e2d87
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00644
/
top.v
blob: 5dac699d239272b4086b7412467406db124bef0c [
file
] [
log
] [
blame
]
module
top
(
clk
,
in
,
out
);
parameter DEPTH
=
10
;
input wire clk
,
in
;
output reg
out
;
always
@(
posedge clk
)
assert
(
$changed
(
in
)
==
(
in
!=
$past
(
in
)));
endmodule