Verification of and Gate
Verification of and Gate
LAB EXRCISE#2
VERIFICATION OF OR GATE
library ieee;
use ieee.std_logic_1164.all;
------------------------------------------------entity or2 is
port(a,b:in bit;
y:out bit);
end or2;
--------------------------------------------------------architecture or2 of or2 is
begin
y<= a or2 b;
end or2;
LAB EXRCISE#3
LAB EXRCISE#4
LAB EXRCISE#5
LAB EXRCISE#6