当前位置:网站首页>IP Core: FIFO
IP Core: FIFO
2022-08-02 00:15:00 【Liu Yan son】
前言
Instantiate thisFIFO的IPnuclear forSDRAM中读写FIFO
正文
Only the following are configured3部分,其余保持默认即可



配置完成后,You can go to the folder to find the instantiation file,将其复制到顶层模块中

//------------- wr_fifo_data -------------
fifo_r_w wr_fifo_data(
//用户接口
.wrclk (wr_fifo_wr_clk ), //写时钟
.wrreq (wr_fifo_wr_req ), //写请求
.data (wr_fifo_wr_data), //写数据
//SDRAM接口
.rdclk (sdram_clk ), //读时钟
.rdreq (sdram_wr_ack ), //读请求
.q (sdram_data_in ), //读数据
.rdusedw (wr_fifo_num ), //FIFO中的数据量
.wrusedw ( ),
.aclr (~sdram_rst_n || wr_fifo_rst) //清零信号
);
//------------- rd_fifo_data -------------
fifo_r_w rd_fifo_data(
//sdram接口
.wrclk (sdram_clk ), //写时钟
.wrreq (sdram_rd_ack ), //写请求
.data (sdram_data_out ), //写数据
//用户接口
.rdclk (rd_fifo_rd_clk ), //读时钟
.rdreq (rd_fifo_rd_req ), //读请求
.q (rd_fifo_rd_data), //读数据
.rdusedw ( ),
.wrusedw (rd_fifo_num ), //FIFO中的数据量
.aclr (~sdram_rst_n || rd_fifo_rst) //清零信号
);
边栏推荐
- 单片机遥控开关系统设计(结构原理、电路、程序)
- Study Notes: The Return of Machine Learning
- OpenCV DNN blogFromImage() detailed explanation
- security cross-domain configuration
- easy-excel 解决百万数据导入导出,性能很强
- CRS 管理与维护
- Using the "stack" fast computing -- reverse polish expression
- 如何用Redis实现分布式锁?
- 08-SDRAM:汇总
- security CSRF Vulnerability Protection
猜你喜欢
随机推荐
els 方块边界变形处理
在不完全恢复、控制文件被创建或还原后,必须使用 RESETLOGS 打开数据库,解释 RESETLOGS.
如何发现新的潜力项目?工具推荐
security 会话并发管理
CDH6 Hue to open a "ASCII" codec can 't encode characters
Flink Yarn Per Job - CliFrontend
Deliver cloud-native microservices applications with Zadig
【ACWing】406. 放置机器人
Is TCP reliable?Why?
【加密周报】经济衰退在加息气氛中蔓延 美联储“放手一搏”?盘点上周加密市场发生的重大事件
Docker搭建Mysql主从复制
20220725 Information update
在MySQL中使用MD5加密【入门体验】
OpenCV DNN blogFromImage() detailed explanation
Using the "stack" fast computing -- reverse polish expression
C language Qixi is coming!It's time to show the romance of programmers!
Architecture basic concept and nature of architecture
玩转NFT夏季:这份工具宝典值得收藏
正则表达式
CRS 管理与维护









