Sign in
foss-fpga-tools
/
yosys-symbiflow-plugins
/
0fb95e54c6ac2270bff620285c73a6f9e95a61e3
/
.
/
sdc-plugin
/
tests
/
restore_from_json
/
restore_from_json.v
blob: 0c35ede110011f20986e0982625fb570ea4b4aca [
file
] [
log
] [
blame
]
module
top
(
input clk
,
input i
,
output o
);
reg
[
0
:
0
]
outff
=
0
;
assign o
=
outff
;
always
@(
posedge clk
)
begin
outff
<=
i
;
end
endmodule