diff options
author | Olivier Galibert <galibert@pobox.com> | 2021-10-17 20:00:03 +0200 |
---|---|---|
committer | Olivier Galibert <galibert@pobox.com> | 2021-10-17 20:00:03 +0200 |
commit | 6e78a80ff915639c99bf0e4bbd44d4c7f7f20df1 (patch) | |
tree | 48d220264ce0287b29dbe9beee74fa53ff369d5f /techlibs/intel_alm/common | |
parent | 6253d4ec9e782d0d36ec429fa6ac84d500edbda5 (diff) | |
download | yosys-6e78a80ff915639c99bf0e4bbd44d4c7f7f20df1.tar.gz yosys-6e78a80ff915639c99bf0e4bbd44d4c7f7f20df1.tar.bz2 yosys-6e78a80ff915639c99bf0e4bbd44d4c7f7f20df1.zip |
CycloneV: Add (passthrough) support for cyclonev_oscillator
Diffstat (limited to 'techlibs/intel_alm/common')
-rw-r--r-- | techlibs/intel_alm/common/megafunction_bb.v | 12 |
1 files changed, 11 insertions, 1 deletions
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 |