Skip to content

Instantly share code, notes, and snippets.

@maluta
Created April 6, 2010 20:20
Show Gist options
  • Save maluta/358059 to your computer and use it in GitHub Desktop.
Save maluta/358059 to your computer and use it in GitHub Desktop.
entity exemplo is
port (
a,b,c,d : in bit;
f : out bit
);
end exemplo;
architecture arquitetura of exemplo is
begin
f <= (a and b) nor (c and d)
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment