| Line | |
|---|
| 1 | ---------------------------------------------------------------------------------- |
|---|
| 2 | -- Company: |
|---|
| 3 | -- Engineer: |
|---|
| 4 | -- |
|---|
| 5 | -- Create Date: 09:18:52 06/13/2011 |
|---|
| 6 | -- Design Name: |
|---|
| 7 | -- Module Name: MUX1 - Behavioral |
|---|
| 8 | -- Project Name: |
|---|
| 9 | -- Target Devices: |
|---|
| 10 | -- Tool versions: |
|---|
| 11 | -- Description: |
|---|
| 12 | -- |
|---|
| 13 | -- Dependencies: |
|---|
| 14 | -- |
|---|
| 15 | -- Revision: |
|---|
| 16 | -- Revision 0.01 - File Created |
|---|
| 17 | -- Additional Comments: |
|---|
| 18 | -- |
|---|
| 19 | ---------------------------------------------------------------------------------- |
|---|
| 20 | library IEEE; |
|---|
| 21 | use IEEE.STD_LOGIC_1164.ALL; |
|---|
| 22 | use IEEE.STD_LOGIC_ARITH.ALL; |
|---|
| 23 | use IEEE.STD_LOGIC_UNSIGNED.ALL; |
|---|
| 24 | |
|---|
| 25 | ---- Uncomment the following library declaration if instantiating |
|---|
| 26 | ---- any Xilinx primitives in this code. |
|---|
| 27 | --library UNISIM; |
|---|
| 28 | --use UNISIM.VComponents.all; |
|---|
| 29 | |
|---|
| 30 | entity MUX1 is |
|---|
| 31 | Port ( di1 : in STD_LOGIC; |
|---|
| 32 | di2 : in STD_LOGIC; |
|---|
| 33 | do : out STD_LOGIC; |
|---|
| 34 | sel : in STD_LOGIC); |
|---|
| 35 | end MUX1; |
|---|
| 36 | |
|---|
| 37 | architecture Behavioral of MUX1 is |
|---|
| 38 | |
|---|
| 39 | begin |
|---|
| 40 | --modelisation d'un multiplexeur 1 bit |
|---|
| 41 | with sel select |
|---|
| 42 | do <= di1 when '0', |
|---|
| 43 | di2 when '1', |
|---|
| 44 | di1 when others; |
|---|
| 45 | end Behavioral; |
|---|
| 46 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.