From e5e7e4fe667b96264abe1459491ddf6bb1765457 Mon Sep 17 00:00:00 2001 From: LimaBR Date: Wed, 26 Apr 2023 08:46:41 -0300 Subject: [PATCH] Template --- Bluetooth_VHDL.xise | 392 ++++++++++++++++++++++++++++++++++++++++++++ constraints.ucf | 25 +++ main.vhdl | 43 +++++ 3 files changed, 460 insertions(+) create mode 100644 Bluetooth_VHDL.xise create mode 100644 constraints.ucf create mode 100644 main.vhdl diff --git a/Bluetooth_VHDL.xise b/Bluetooth_VHDL.xise new file mode 100644 index 0000000..24de74d --- /dev/null +++ b/Bluetooth_VHDL.xise @@ -0,0 +1,392 @@ + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/constraints.ucf b/constraints.ucf new file mode 100644 index 0000000..ce8519f --- /dev/null +++ b/constraints.ucf @@ -0,0 +1,25 @@ +NET "CLK27MHz" LOC = V10 ; + +NET "GPIO[0]" LOC = N17; +NET "GPIO[1]" LOC = M18; +NET "GPIO[2]" LOC = A3; +NET "GPIO[3]" LOC = L15; +NET "GPIO[4]" LOC = F15; +NET "GPIO[5]" LOC = B4; +NET "GPIO[6]" LOC = F13; +NET "GPIO[7]" LOC = P12; + +NET "BUT[0]" LOC = P4; +NET "BUT[1]" LOC = F6; +NET "BUT[2]" LOC = E4; +NET "BUT[3]" LOC = F5; + +NET "DIPSW[0]" LOC = D14; +NET "DIPSW[1]" LOC = E12; +NET "DIPSW[2]" LOC = F12; +NET "DIPSW[3]" LOC = V13; + +NET "LEDS[0]" LOC = E13; +NET "LEDS[1]" LOC = C14; +NET "LEDS[2]" LOC = C4; +NET "LEDS[3]" LOC = A4; \ No newline at end of file diff --git a/main.vhdl b/main.vhdl new file mode 100644 index 0000000..d86bff0 --- /dev/null +++ b/main.vhdl @@ -0,0 +1,43 @@ +---------------------------------------------------------------------------------- +-- Company: +-- Engineer: +-- +-- Create Date: 08:45:23 04/26/2023 +-- Design Name: +-- Module Name: main - Behavioral +-- Project Name: +-- Target Devices: +-- Tool versions: +-- Description: +-- +-- Dependencies: +-- +-- Revision: +-- Revision 0.01 - File Created +-- Additional Comments: +-- +---------------------------------------------------------------------------------- +library IEEE; +use IEEE.STD_LOGIC_1164.ALL; +--use IEEE.STD_LOGIC_ARITH.ALL; +use IEEE.STD_LOGIC_UNSIGNED.ALL; + +-- Uncomment the following library declaration if using +-- arithmetic functions with Signed or Unsigned values +--use IEEE.NUMERIC_STD.ALL; + +-- Uncomment the following library declaration if instantiating +-- any Xilinx primitives in this code. +--library UNISIM; +--use UNISIM.VComponents.all; + +entity main is +end main; + +architecture Behavioral of main is + +begin + + +end Behavioral; +