集成电路技术分享

 找回密码
 我要注册

QQ登录

只需一步,快速开始

搜索
查看: 1690|回复: 5

uart的top层

[复制链接]
fpga_feixiang 发表于 2021-1-14 10:55:15 | 显示全部楼层 |阅读模式
1 //**************************************************************************
2 // *** 名称 : uart_top.v
3 // *** 作者 : xianyu_FPGA
4 // *** 博客 : https://www.cnblogs.com/xianyufpga/
5 // *** 日期 : 2019-01-10
6 // *** 描述 : 串口实验顶层文件
7 //**************************************************************************
8
9 module uart_top
10 //========================< 端口 >==========================================
11 (
12 input  wire                 clk                 , //时钟,50Mhz
13 input  wire                 rst_n               , //复位,低电平有效
14 input  wire                 uart_rx             , //FPGA通过串口接收的数据
15 output wire                 uart_tx               //FPGA通过串口发送的数据
16 );
17
18 //========================< 连线 >==========================================
19 wire [7:0]                  data                ;
20 wire                        data_vld            ;
21
22 //==========================================================================
23 //==    模块例化
24 //==========================================================================
25 uart_rx
26 #(
27     .BPS_CNT                (52                 )    //仿真用
28 )
29 u_uart_rx
30 (
31     .clk                    (clk                ),
32     .rst_n                  (rst_n              ),
33     .din                    (uart_rx            ),
34     .dout                   (data               ),
35     .dout_vld               (data_vld           )
36 );
37
38 uart_tx
39 #(
40     .BPS_CNT                (52                 )   //仿真用
41 )
42 u_uart_tx
43 (
44     .clk                    (clk                ),
45     .rst_n                  (rst_n              ),
46     .din_vld                (data_vld           ),
47     .din                    (data               ),
48     .dout                   (uart_tx            )
49 );
50
51
52
53 endmodule
大鹏 发表于 2021-1-15 17:31:11 | 显示全部楼层
uart的top层
zxopenhl 发表于 2021-1-21 14:54:57 | 显示全部楼层
uart的top层
大鹏 发表于 2022-2-17 13:34:32 | 显示全部楼层
uart的top层
大鹏 发表于 2022-3-21 12:02:18 | 显示全部楼层
uart的top层
您需要登录后才可以回帖 登录 | 我要注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

QQ|小黑屋|手机版|Archiver|fpga论坛|fpga设计论坛 ( 京ICP备20003123号-1 )

GMT+8, 2024-11-1 11:30 , Processed in 0.060427 second(s), 22 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表