aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2021-10-19 11:23:57 +0200
committerGitHub <noreply@github.com>2021-10-19 11:23:57 +0200
commitaffed103e0cb4c79afadccdafebc2a0e2a1f3150 (patch)
treeccd23468b4fb1f509e9c7b68790b110b9d4b3a4e
parent83887495b80f8dba24c3c81c96cce6f464efb24e (diff)
parent6e78a80ff915639c99bf0e4bbd44d4c7f7f20df1 (diff)
downloadyosys-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
-rw-r--r--techlibs/intel_alm/common/megafunction_bb.v18
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