diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2021-10-19 11:23:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 11:23:57 +0200 |
commit | affed103e0cb4c79afadccdafebc2a0e2a1f3150 (patch) | |
tree | ccd23468b4fb1f509e9c7b68790b110b9d4b3a4e /techlibs | |
parent | 83887495b80f8dba24c3c81c96cce6f464efb24e (diff) | |
parent | 6e78a80ff915639c99bf0e4bbd44d4c7f7f20df1 (diff) | |
download | yosys-affed103e0cb4c79afadccdafebc2a0e2a1f3150.tar.gz yosys-affed103e0cb4c79afadccdafebc2a0e2a1f3150.tar.bz2 yosys-affed103e0cb4c79afadccdafebc2a0e2a1f3150.zip |
Merge pull request #3045 from galibert/master
CycloneV: Add (passthrough) support for cyclonev_hps_interface_mpu_general_purpose
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/intel_alm/common/megafunction_bb.v | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/techlibs/intel_alm/common/megafunction_bb.v b/techlibs/intel_alm/common/megafunction_bb.v index 414d1c941..d4ed95173 100644 --- a/techlibs/intel_alm/common/megafunction_bb.v +++ b/techlibs/intel_alm/common/megafunction_bb.v @@ -697,3 +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; +output [31:0] gp_out; + +endmodule |