⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transfer.vhd

📁 EDA实验--UART串口实验:UART 主要有由数据总线接口、控制逻辑、波特率发生器、发送部分和接收部分等组成。UART 发送器 --- 发送器每隔16 个CLK16 时钟周期输出1 位
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;

entity transfer is
    port(clk,reset,start : in std_logic;
         txd,txddone     : out std_logic);
end transfer;

architecture behave of transfer is
component baud
    port(clk,resetb : in std_logic;
         bclk       : out std_logic);
end component;
component txmit
    port(bclkt,resett,xmit_cmd_p : in std_logic;
         txd,txd_done            : out std_logic);
end component;
signal bclk:std_logic;
begin
  U1:baud  port map ( clk , reset , bclk );
  U2:txmit port map ( bclk, reset , start , txd, txddone );
end behave;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -