Created
April 6, 2010 20:21
-
-
Save maluta/358062 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
entity exemplo is | |
port ( | |
a,b : in bit; | |
c : in bit_vector (2 downto 0); | |
d : buffer bit; | |
e : inout std_logic_vector (3 downto 0); | |
f : out bit | |
); | |
end exemplo; | |
architecture arquitetura of exemplo is | |
signal interno : bit_vector (4 downto 0); | |
constant const : integer := 100; | |
begin | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment