3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

machxo2: Add missing OSCH oscillator primitive.

This commit is contained in:
William D. Jones 2020-12-07 22:29:36 -05:00 committed by Marcelina Kościelnicka
parent c31b17a2e2
commit 124780ecd9

View file

@ -178,3 +178,13 @@ module FACADE_IO #(
end
endgenerate
endmodule
(* blackbox *)
module OSCH #(
parameter NOM_FREQ = "2.08"
) (
input STDBY,
output OSC,
output SEDSTDBY
);
endmodule