ON "Vlsi - Design": Supervisor: Submitted By: DR Montasar Sharif Mohammed Ayoub Othman
ON "Vlsi - Design": Supervisor: Submitted By: DR Montasar Sharif Mohammed Ayoub Othman
REPORT
ON
“VLSI –DESIGN”
Version 7.2 of VHDL was developed and released to the public in 1985
the language was standardized by the IEEE in December 1987; this version of
the language is now known as the IEEE Std 1076-1987
CAPABILITIES
Language supports hierarchy
Architecture body
Configuration declaration
Package declaration
Package body
ENTITY
The entity' declaration specifies the name of the entity being modelled and
lists the set of interface ports
The entity declaration describes the external view of the entity, for example,
the input and output signal names.
ENTITY
HARDWARE DECLARATION
ABSTRACTIO
N OF DIGITAL
SYSTEM
MODEL
ENTITY
entity HALF_ADDER is
port (A, B: in BIT; SUM, CARRY: out BIT);
end HALF_ADDER;
-- This is a comment line.
CONFIGURATION DECLARATION
Configuration for an entity
Binding
In this modeling style, the flow of data through the entity is expressed
primarily using concurrent signal assignment statements
The structure of the entity is not explicitly specified in this modeling style, but
it can be implicitly deduced
Architecture body for the HALF..ADDER entity that uses this style
A process statement, too, has a declarative part (between the keywords process
and begin), and a statement part (between the keywords begin and end
process)