int_osc.v 292 B

12345678910111213141516
  1. // int_osc.v
  2. // Generated using ACDS version 21.1 842
  3. `timescale 1 ps / 1 ps
  4. module int_osc (
  5. output wire clkout, // clkout.clk
  6. input wire oscena // oscena.oscena
  7. );
  8. altera_int_osc int_osc_0 (
  9. .oscena (oscena), // oscena.oscena
  10. .clkout (clkout) // clkout.clk
  11. );
  12. endmodule