vhdl_workshop:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
vhdl_workshop:start [2017/02/13 17:43]
SSE Minion [Design Structure]
vhdl_workshop:start [2017/02/14 16:36]
SSE Minion [Directory Structure]
Line 65: Line 65:
  
 ==== Directory Structure ==== ==== Directory Structure ====
-First, you will need a directory where you can store the VHDL source code files. In the following, we assume that ~/workshop is the base directory for this project. It is advisable to separate the VHDL sources from their derived files, i.e. we will create a subdirectory ~/workshop/ WORK for the analysed objects.+First, you will need a directory where you can store the VHDL source code files. In the following, we assume that ~/workshop is the base directory for this project. It is advisable to separate the VHDL sources from their derived files, i.e. we will create a subdirectory ~/workshop/WORK for the analysed objects.
  
 ==== Working Environment ==== ==== Working Environment ====
Line 116: Line 116:
 entity AND_GATE is entity AND_GATE is
 port (A,B : in std_logic; port (A,B : in std_logic;
-  Z : out std_logic);+        Z : out std_logic);
 end AND_GATE; end AND_GATE;