Sign in
foss-fpga-tools
/
yosys-symbiflow-plugins
/
c6c5ca37153c94ef957ac2cd9f3549390614387f
/
.
/
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