Skip to content

Instantly share code, notes, and snippets.

@maluta
Created April 6, 2010 20:20
Show Gist options
  • Save maluta/358061 to your computer and use it in GitHub Desktop.
Save maluta/358061 to your computer and use it in GitHub Desktop.
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