CycloneV: Add (passthrough) support for cyclonev_oscillator

This commit is contained in:
Olivier Galibert 2021-10-17 20:00:03 +02:00
parent 6253d4ec9e
commit 6e78a80ff9
1 changed files with 11 additions and 1 deletions

View File

@ -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