by Klaus Thiele <Thiele.K@[EMAIL PROTECTED]
>
May 23, 2008 at 04:45 PM
> Probably what you're trying to say is that you've got a number in the
> range 0 to 15 (most likely represented inside the FPGA as a 4 bit
> binary number) and you want to decode to select one of 16 different
> things. In that case, Google for 4->16 decoders, de-multiplexers,
> etc. You'll likely implement something like this...
>
> process
> begin
> Select_This <= (others => '0');
> Select_This(Index) <= '1'
> end process;
Yes, that it is what I am looking for! A 4->16 decoder