From: Olivier Galibert Date: Thu, 14 Oct 2021 14:56:10 +0000 (+0200) Subject: CycloneV: Add (passthrough) support for cyclonev_hps_interface_mpu_general_purpose X-Git-Tag: yosys-0.11~39^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6253d4ec9e782d0d36ec429fa6ac84d500edbda5;p=yosys.git CycloneV: Add (passthrough) support for cyclonev_hps_interface_mpu_general_purpose --- 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