Template For Lab 2 SoC
Template For Lab 2 SoC
Course: “System-on-chip”
Laboratory Work
Report #2
Student: Teacher:
Gr. КІУКІі-16-3 Prof. Eugenia Litvinova
Name
Kharkov 2020
Task of the Lab#2:
Using cloud service http://www.edaplayground.com create the following
projects.
You can login this service using Facebook or Google account.
begin
-- Connect DUT
-- DUT instantiation
DUT: Full_Adder port map(A1_in, A2_in,
A3_in, C1_out, S1_out);
process
begin
A1_in <= '1';
A2_in <= '1';
A3_in <= '0';
wait for 1 ns;
wait;
end process;
end tb;
end rtl;