aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Galibert <galibert@pobox.com>2021-10-14 16:56:10 +0200
committerOlivier Galibert <galibert@pobox.com>2021-10-17 10:39:13 +0200
commit6253d4ec9e782d0d36ec429fa6ac84d500edbda5 (patch)
tree570d7821c1eee6a797522f080851c21d5c6384bd
parent0dd42d406d3dc5eaa73e19396f4e49cb9182130f (diff)
downloadyosys-6253d4ec9e782d0d36ec429fa6ac84d500edbda5.tar.gz
yosys-6253d4ec9e782d0d36ec429fa6ac84d500edbda5.tar.bz2
yosys-6253d4ec9e782d0d36ec429fa6ac84d500edbda5.zip
CycloneV: Add (passthrough) support for cyclonev_hps_interface_mpu_general_purpose
-rw-r--r--techlibs/intel_alm/common/megafunction_bb.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/techlibs/intel_alm/common/megafunction_bb.v b/techlibs/intel_alm/common/megafunction_bb.v
index 414d1c941..bab665732 100644
--- a/techlibs/intel_alm/common/megafunction_bb.v
+++ b/techlibs/intel_alm/common/megafunction_bb.v
@@ -697,3 +697,11 @@ output outclk;
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