-
-
Save maluta/358061 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 : in bit; | |
x : inout bit | |
); | |
end exemplo; | |
architecture arquitetura of exemplo is | |
signal b : bit; | |
signal c : bit; | |
begin | |
x <= c xor a; | |
c = a and b; | |
b = not(x) | |
end; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment