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

📄 wr_clk_core.vhd

📁 如何使用ISE和FPGA使用指南
💻 VHD
字号:
------------------------------------------------------------------------------------ Company: -- Engineer: -- -- Create Date:    15:09:10 11/04/2005 -- Design Name: -- Module Name:    wr_clk_core - structural -- Project Name: -- Target Devices: -- Tool versions: -- Description: ---- Dependencies: ---- Revision: -- Revision 0.01 - File Created-- Additional Comments: ------------------------------------------------------------------------------------library IEEE;use IEEE.STD_LOGIC_1164.ALL;use IEEE.STD_LOGIC_ARITH.ALL;use IEEE.STD_LOGIC_UNSIGNED.ALL;---- Uncomment the following library declaration if instantiating---- any Xilinx primitives in this code.library UNISIM;use UNISIM.VComponents.all;entity wr_clk_core is    Port ( wr_clk : in  STD_LOGIC;           reset : in  STD_LOGIC;           wr_clk_bufio : out  STD_LOGIC;           wr_clk_bufr : out  STD_LOGIC;           wr_clk_bufr_div8 : out  STD_LOGIC);end wr_clk_core;architecture structural of wr_clk_core is	signal vcc: std_logic;	signal wr_clk_bufio_i: std_logic;begin	vcc <= '1';		wr_clk_bufio <= wr_clk_bufio_i;	end structural;

⌨️ 快捷键说明

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