# VHDL Basis 3 Board oder Basis 2 Board Vivado wird im Labor verwendet, installationsvorgaben sind in Aulis vorzufinden In der Übung heute VHDL ausprobieren folgende List ist nicht vollständig und repräsentiert nur das durch Herrn Bredereke präsentierte Projekt () ## Typen - character - string - integer ## Datenformate `type is (a, b, c);` `type is array();` `type is record ... end record;` `constant : := ` ## Schnittstellen ```vhdl entity is port(); end ; ``` ## Objekte ``` vhdl constant : := (); ``` ## Zuweisung ```vhdl constant : integer := 0 --deklaration <= 1 --variabeländerung ```