1 |
6 |
gajos |
-----------------------------------------------------------------------
|
2 |
|
|
---- ----
|
3 |
|
|
---- Montgomery modular multiplier and exponentiator ----
|
4 |
|
|
---- ----
|
5 |
|
|
---- This file is part of the Montgomery modular multiplier ----
|
6 |
|
|
---- and exponentiator project ----
|
7 |
|
|
---- http://opencores.org/project,mod_mult_exp ----
|
8 |
|
|
---- ----
|
9 |
|
|
---- Description: ----
|
10 |
|
|
---- Asynchronous multiplexer - nothing special. ----
|
11 |
|
|
---- To Do: ----
|
12 |
|
|
---- ----
|
13 |
|
|
---- Author(s): ----
|
14 |
|
|
---- - Krzysztof Gajewski, gajos@opencores.org ----
|
15 |
|
|
---- k.gajewski@gmail.com ----
|
16 |
|
|
---- ----
|
17 |
|
|
-----------------------------------------------------------------------
|
18 |
|
|
---- ----
|
19 |
|
|
---- Copyright (C) 2014 Authors and OPENCORES.ORG ----
|
20 |
|
|
---- ----
|
21 |
|
|
---- This source file may be used and distributed without ----
|
22 |
|
|
---- restriction provided that this copyright statement is not ----
|
23 |
|
|
---- removed from the file and that any derivative work contains ----
|
24 |
|
|
---- the original copyright notice and the associated disclaimer. ----
|
25 |
|
|
---- ----
|
26 |
|
|
---- This source file is free software; you can redistribute it ----
|
27 |
|
|
---- and-or modify it under the terms of the GNU Lesser General ----
|
28 |
|
|
---- Public License as published by the Free Software Foundation; ----
|
29 |
|
|
---- either version 2.1 of the License, or (at your option) any ----
|
30 |
|
|
---- later version. ----
|
31 |
|
|
---- ----
|
32 |
|
|
---- This source is distributed in the hope that it will be ----
|
33 |
|
|
---- useful, but WITHOUT ANY WARRANTY; without even the implied ----
|
34 |
|
|
---- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ----
|
35 |
|
|
---- PURPOSE. See the GNU Lesser General Public License for more ----
|
36 |
|
|
---- details. ----
|
37 |
|
|
---- ----
|
38 |
|
|
---- You should have received a copy of the GNU Lesser General ----
|
39 |
|
|
---- Public License along with this source; if not, download it ----
|
40 |
|
|
---- from http://www.opencores.org/lgpl.shtml ----
|
41 |
|
|
---- ----
|
42 |
|
|
-----------------------------------------------------------------------
|
43 |
|
|
library IEEE;
|
44 |
|
|
use IEEE.STD_LOGIC_1164.ALL;
|
45 |
|
|
use work.properties.ALL;
|
46 |
|
|
|
47 |
|
|
-- Uncomment the following library declaration if using
|
48 |
|
|
-- arithmetic functions with Signed or Unsigned values
|
49 |
|
|
--use IEEE.NUMERIC_STD.ALL;
|
50 |
|
|
|
51 |
|
|
-- Uncomment the following library declaration if instantiating
|
52 |
|
|
-- any Xilinx primitives in this code.
|
53 |
|
|
--library UNISIM;
|
54 |
|
|
--use UNISIM.VComponents.all;
|
55 |
|
|
|
56 |
|
|
entity AsyncMux is
|
57 |
|
|
generic (
|
58 |
|
|
word_size : integer := WORD_LENGTH
|
59 |
|
|
);
|
60 |
|
|
port (
|
61 |
|
|
input0 : in STD_LOGIC_VECTOR(word_size downto 0);
|
62 |
|
|
input1 : in STD_LOGIC_VECTOR(word_size downto 0);
|
63 |
|
|
ctrl : in STD_LOGIC;
|
64 |
|
|
output : out STD_LOGIC_VECTOR(word_size downto 0)
|
65 |
|
|
);
|
66 |
|
|
end AsyncMux;
|
67 |
|
|
|
68 |
|
|
architecture Behavioral of AsyncMux is
|
69 |
|
|
|
70 |
|
|
begin
|
71 |
|
|
output <= input0 when (ctrl = '0') else
|
72 |
|
|
input1;
|
73 |
|
|
|
74 |
|
|
end Behavioral;
|
75 |
|
|
|