Instructions
Declare your library functions. For example, if you want to declare a standard logic arithmetic function, your code would look like this:
Define your data path's ports. For example:
̶0;entity datapath is
Your data path's ports will determine how and where your data flows. You are essentially determining where data is input and where it is output.
Close the data path port entry by using the following code:
Determine the architectural structure of your data path. You will need to list the components, what the components are comprised of and how data flows to and from each component. For example, sample code to create a register file would look like this:
̶0;component<Defines the code as a component> reg_file<defines code as a register file> is<sets the attributes of ̶0;reg_file̶1;.>
Close the architectural design by ending the structure using "end struct;̶1;.
"library ieee;
use ieee.std_logic_arith.all;"
port( clock_dp: in std_logic;
rst_dp: in std_logic;
imm_data: in std_logic_vector(15 downto 0);̶1;
̶0;);
end datapath;̶1;
port ( clock : in std_logic;
rst : in std_logic;̶1;