##// END OF EJS Templates
MiniSpartan6:...
MiniSpartan6: added ftdi chip config to switch between UART and Async FIFO. added few WIP designs with either spwlight core, FIFO_deom IP... Libs: added SpaceWire Light IP (Works really well!) started design of ahb_ftdi_fifo -> same protocol than AHBUART but over FTDI's Async FIFO interface. This might lead to much faster transfers UP to 12MB/s.

File last commit:

r168:0b190be76d60 alexis
r681:9d85f9f8f05a default
Show More
Serial_Driver_Multiplexor.vhd
33 lines | 723 B | text/x-vhdl | VhdlLexer
/ lib / lpp / Rocket_PCM_Encoder / Serial_Driver_Multiplexor.vhd
-- Serial_Driver_Multiplexor.vhd
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
entity Serial_Driver_Multiplexor is
generic(InputCnt : integer := 2;inputSize : integer:=8);
port(
clk : in std_logic;
Sel : in integer range 0 to InputCnt-1;
input : in std_logic_vector(InputCnt*inputSize-1 downto 0);
output : out std_logic_vector(inputSize-1 downto 0)
);
end entity;
architecture ar_Serial_Driver_Multiplexor of Serial_Driver_Multiplexor is
begin
process(clk)
begin
if clk'event and clk = '1' then
output <= input((Sel+1)*inputSize-1 downto (Sel)*inputSize);
end if;
end process;
end ar_Serial_Driver_Multiplexor;