---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 04/29/2024 10:12:03 AM -- Design Name: -- Module Name: effect_selector - 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; -- 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 leaf cells in this code. --library UNISIM; --use UNISIM.VComponents.all; entity effect_selector is generic( JOYSTICK_LENGHT : integer := 10 ); Port ( aclk : in STD_LOGIC; aresetn : in STD_LOGIC; effect : in STD_LOGIC; jstck_x : in STD_LOGIC_VECTOR(JOYSTICK_LENGHT-1 downto 0); jstck_y : in STD_LOGIC_VECTOR(JOYSTICK_LENGHT-1 downto 0); volume : out STD_LOGIC_VECTOR(JOYSTICK_LENGHT-1 downto 0); balance : out STD_LOGIC_VECTOR(JOYSTICK_LENGHT-1 downto 0); lfo_period : out STD_LOGIC_VECTOR(JOYSTICK_LENGHT-1 downto 0) ); end effect_selector; architecture Behavioral of effect_selector is begin end Behavioral;