The port keyword is used in a configuration to define the input and output ports of an entity.  A port statement includes—in this order—the reserved word "port", followed by a list of declarations for the port signals being defined.

 

Example

    entity Mux is

      port(A,B: in std_ulogic;

              Sel: in  std_ulogic;

              Y: out std_ulogic);

    end Mux;

 

LRM

    1.1

 

See also

image\diamond.gif  Entity

image\diamond.gif  Port and Generic Mapping

image\diamond.gif  Components