You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
536 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. `timescale 1ns / 1ns
  2. module Top (
  3. input sys_clk,
  4. input rst_n,
  5. output reg [3:0] led,
  6. output reg [3:0] key,
  7. output wire usb_serial_tx,
  8. input wire usb_serial_rx,
  9. output wire [35:3] test_io
  10. );
  11. wire inclkpll_clk0out;
  12. inclkpll inclkpll_inst (
  13. .clkin1 (sys_clk),
  14. .clkout0(inclkpll_clk0out)
  15. );
  16. des_ttl_generator des_ttl_generator_inst (
  17. .clk(sys_clk),
  18. .rst_n(rst_n),
  19. .addr(),
  20. .wr_data(0),
  21. .wr_en(0),
  22. .rd_data(),
  23. .signal_in(1),
  24. .ttloutput(test_io[3])
  25. );
  26. endmodule