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