Entity : Port Declarations
Structure : <class> object_name : <mode> <type> ;
- <class> : what can be done to an object
- Object_name : identifier
- <mode> : directional
- in (input) out (output)
- inout (bidirectional) buffer (output w/ internal feedback)
- <type> : What can be contained in the object
Port ( signal clk : in bit;
--Note: signal is assumed and is not required
END <entity_name> (1076-1987 version)
END ENTITY <entity_name> ; ( 1076-1993 version)