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

📄 cl1inv.vhd

📁 利用VHDL编写的counter程序
💻 VHD
字号:
------------------------------------------------------------------------------------ -- Create Date:    13:40:39 09/25/2008 -- Design Name:    Chu Kuang Liu-- Module Name:    cl1inv - Behavioral -- Affiliation:    Prairie View A&M University    -- Description: Inverter-- 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 cl1inv is    Port ( a : in  STD_LOGIC;           z : out  STD_LOGIC);end cl1inv;architecture Behavioral of cl1inv isbeginz<=(not a) after 100ps;end Behavioral;

⌨️ 快捷键说明

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