Fifo16x3_tmp.v 714 B

123456789101112131415161718192021222324
  1. //Copyright (C)2014-2024 Gowin Semiconductor Corporation.
  2. //All rights reserved.
  3. //File Title: Template file for instantiation
  4. //Tool Version: V1.9.9.02
  5. //Part Number: GW1N-LV9PG256C6/I5
  6. //Device: GW1N-
  7. //Created Time: Thu Apr 25 16:04:59 2024
  8. //Change the instance name and port connections to the signal names
  9. //--------Copy here to design--------
  10. Fifo16x3 your_instance_name(
  11. .Data(Data_i), //input [15:0] Data
  12. .Reset(Reset_i), //input Reset
  13. .WrClk(WrClk_i), //input WrClk
  14. .RdClk(RdClk_i), //input RdClk
  15. .WrEn(WrEn_i), //input WrEn
  16. .RdEn(RdEn_i), //input RdEn
  17. .Q(Q_o), //output [15:0] Q
  18. .Empty(Empty_o), //output Empty
  19. .Full(Full_o) //output Full
  20. );
  21. //--------Copy end-------------------