Skip to content

Commit

Permalink
aaa
Browse files Browse the repository at this point in the history
  • Loading branch information
weiwei committed Oct 12, 2023
1 parent 505d232 commit 9b6e93d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions rtl_code/sync_fifo.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//===================================
//author :
//data :
//version:
//===================================

module sync_fifo #(
parameter WD = 8,
parameter DEEP = 16,
)(
input clk,
input rst_n,
input wr_en,
input [WD-1:0] wr_data,

)

0 comments on commit 9b6e93d

Please sign in to comment.