Download as pdf or txt
Download as pdf or txt
You are on page 1of 18

Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

1 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

2 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

3 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

4 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

5 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

6 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

7 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

8 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;

entity full_adder is
Port ( a : in STD_LOGIC;
b : in STD_LOGIC;
cin : in STD_LOGIC;
sum : out STD_LOGIC;
cout : out STD_LOGIC);
end full_adder;

architecture Behavioral of full_adder is

begin

sum <= a xor b xor cin;


cout <= (a and b) or (a and cin) or (b and cin);

9 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

end Behavioral;

10 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

net "a" loc = "p22";


net "b" loc = "p21";
net "cin" loc = "p17";
net "sum" loc = "p33";
net "cout" loc = "p32";

11 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

12 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

13 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

14 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

15 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

16 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

All About FPGA


3.9K likes

All About FPGA

257

17 of 18 21/07/2020, 22:03
Getting Started with Xilinx ISE 14.7 for EDGE Spartan 6 FPGA Kit https://allaboutfpga.com/getting-started-with-xilinx-ise-14-7-for-edge-...

18 of 18 21/07/2020, 22:03

You might also like