Slide 04
Slide 04
What is VHDL
● VHSIC Hardware Description Language.
● VHSIC: Very High Speed Integrated Circuit
● I/O mapping
● Testing
Design Example
● Full Adder Design and Implementation
● Always draw a block diagram conceptualizing the
entity.
S = A B Cin
LIBRARY ieee;
USE ieee.std_logic_1164.all;
NOTE: std_logic_1164 package is required for multi-level logic as opposed to binary logic.
VHDL Structure: LIBRARY
ENTITY nand_gate IS
PORT ( a, b : IN BIT;
x : OUT BIT );
END nand_gate;
VHDL Structure:Architecture
X = ab