altera_int_osc.v 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //altint_osc CBX_AUTO_BLACKBOX="ALL" CBX_SINGLE_OUTPUT_FILE="ON" DEVICE_FAMILY="Cyclone IV E" clkout oscena
  2. //VERSION_BEGIN 22.1 cbx_altint_osc 2022:10:25:15:32:10:SC cbx_arriav 2022:10:25:15:32:09:SC cbx_cycloneii 2022:10:25:15:32:10:SC cbx_lpm_add_sub 2022:10:25:15:32:10:SC cbx_lpm_compare 2022:10:25:15:32:10:SC cbx_lpm_counter 2022:10:25:15:32:10:SC cbx_lpm_decode 2022:10:25:15:32:10:SC cbx_mgl 2022:10:25:15:42:35:SC cbx_nadder 2022:10:25:15:32:10:SC cbx_nightfury 2022:10:25:15:32:10:SC cbx_stratix 2022:10:25:15:32:10:SC cbx_stratixii 2022:10:25:15:32:10:SC cbx_stratixiii 2022:10:25:15:32:10:SC cbx_stratixv 2022:10:25:15:32:10:SC cbx_tgx 2022:10:25:15:32:10:SC cbx_zippleback 2022:10:25:15:32:10:SC VERSION_END
  3. // synthesis VERILOG_INPUT_VERSION VERILOG_2001
  4. // altera message_off 10463
  5. // Copyright (C) 2022 Intel Corporation. All rights reserved.
  6. // Your use of Intel Corporation's design tools, logic functions
  7. // and other software and tools, and any partner logic
  8. // functions, and any output files from any of the foregoing
  9. // (including device programming or simulation files), and any
  10. // associated documentation or information are expressly subject
  11. // to the terms and conditions of the Intel Program License
  12. // Subscription Agreement, the Intel Quartus Prime License Agreement,
  13. // the Intel FPGA IP License Agreement, or other applicable license
  14. // agreement, including, without limitation, that your use is for
  15. // the sole purpose of programming logic devices manufactured by
  16. // Intel and sold by Intel or its authorized distributors. Please
  17. // refer to the applicable agreement for further details, at
  18. // https://fpgasoftware.intel.com/eula.
  19. //synthesis_resources = cycloneive_oscillator 1
  20. //synopsys translate_off
  21. `timescale 1 ps / 1 ps
  22. //synopsys translate_on
  23. module altera_int_osc
  24. (
  25. clkout,
  26. oscena) /* synthesis synthesis_clearbox=1 */;
  27. output clkout;
  28. input oscena;
  29. wire wire_sd1_clkout;
  30. cycloneive_oscillator sd1
  31. (
  32. .clkout(wire_sd1_clkout),
  33. .oscena(oscena));
  34. assign
  35. clkout = wire_sd1_clkout;
  36. endmodule //altera_int_osc
  37. //VALID FILE