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