From: Olivier Galibert Date: Sun, 17 Oct 2021 18:00:03 +0000 (+0200) Subject: CycloneV: Add (passthrough) support for cyclonev_oscillator X-Git-Tag: yosys-0.11~39^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6e78a80ff915639c99bf0e4bbd44d4c7f7f20df1;p=yosys.git CycloneV: Add (passthrough) support for cyclonev_oscillator --- diff --git a/techlibs/intel_alm/common/megafunction_bb.v b/techlibs/intel_alm/common/megafunction_bb.v index bab665732..d4ed95173 100644 --- a/techlibs/intel_alm/common/megafunction_bb.v +++ b/techlibs/intel_alm/common/megafunction_bb.v @@ -697,11 +697,21 @@ output outclk; endmodule +// Internal interfaces +(* keep *) +module cyclonev_oscillator(oscena, clkout, clkout1); + +input oscena; +output clkout; +output clkout1; + +endmodule + // HPS interfaces (* keep *) module cyclonev_hps_interface_mpu_general_purpose(gp_in, gp_out); -input [31:0] gp_in; +input [31:0] gp_in; output [31:0] gp_out; endmodule