int_osc.v 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // Copyright (C) 2020 Intel Corporation. All rights reserved.
  2. // Your use of Intel Corporation's design tools, logic functions
  3. // and other software and tools, and any partner logic
  4. // functions, and any output files from any of the foregoing
  5. // (including device programming or simulation files), and any
  6. // associated documentation or information are expressly subject
  7. // to the terms and conditions of the Intel Program License
  8. // Subscription Agreement, the Intel Quartus Prime License Agreement,
  9. // the Intel FPGA IP License Agreement, or other applicable license
  10. // agreement, including, without limitation, that your use is for
  11. // the sole purpose of programming logic devices manufactured by
  12. // Intel and sold by Intel or its authorized distributors. Please
  13. // refer to the applicable agreement for further details, at
  14. // https://fpgasoftware.intel.com/eula.
  15. // VENDOR "Altera"
  16. // PROGRAM "Quartus Prime"
  17. // VERSION "Version 20.1.1 Build 720 11/11/2020 SJ Lite Edition"
  18. // DATE "12/01/2021 09:19:36"
  19. //
  20. // Device: Altera EP4CE15F17C8 Package FBGA256
  21. //
  22. //
  23. // This greybox netlist file is for third party Synthesis Tools
  24. // for timing and resource estimation only.
  25. //
  26. module int_osc (
  27. clkout,
  28. oscena)/* synthesis synthesis_greybox=0 */;
  29. output clkout;
  30. input oscena;
  31. wire gnd;
  32. wire vcc;
  33. wire unknown;
  34. assign gnd = 1'b0;
  35. assign vcc = 1'b1;
  36. // unknown value (1'bx) is not needed for this tool. Default to 1'b0
  37. assign unknown = 1'b0;
  38. wire \int_osc_0|wire_sd1_clkout ;
  39. wire \oscena~input_o ;
  40. int_osc_altera_int_osc int_osc_0(
  41. .clkout(\int_osc_0|wire_sd1_clkout ),
  42. .oscena(\oscena~input_o ));
  43. assign \oscena~input_o = oscena;
  44. assign clkout = \int_osc_0|wire_sd1_clkout ;
  45. endmodule
  46. module int_osc_altera_int_osc (
  47. clkout,
  48. oscena)/* synthesis synthesis_greybox=0 */;
  49. output clkout;
  50. input oscena;
  51. wire gnd;
  52. wire vcc;
  53. wire unknown;
  54. assign gnd = 1'b0;
  55. assign vcc = 1'b1;
  56. // unknown value (1'bx) is not needed for this tool. Default to 1'b0
  57. assign unknown = 1'b0;
  58. cycloneive_oscillator sd1(
  59. .oscena(oscena),
  60. .clkout(clkout));
  61. endmodule