Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
277799065a9dde237732a09c2d0aa3e7c2db2291
/
.
/
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