1 |
2 |
entactogen |
|
2 |
|
|
-- Copyright (c) 2013 Antonio de la Piedra
|
3 |
|
|
|
4 |
|
|
-- This program is free software: you can redistribute it and/or modify
|
5 |
|
|
-- it under the terms of the GNU General Public License as published by
|
6 |
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
7 |
|
|
-- (at your option) any later version.
|
8 |
|
|
|
9 |
|
|
-- This program is distributed in the hope that it will be useful,
|
10 |
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11 |
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
12 |
|
|
-- GNU General Public License for more details.
|
13 |
|
|
|
14 |
|
|
-- You should have received a copy of the GNU General Public License
|
15 |
|
|
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
16 |
|
|
|
17 |
|
|
library IEEE;
|
18 |
|
|
use IEEE.STD_LOGIC_1164.ALL;
|
19 |
|
|
|
20 |
|
|
-- Copyright (c) 2013 Antonio de la Piedra
|
21 |
|
|
|
22 |
|
|
-- This program is free software: you can redistribute it and/or modify
|
23 |
|
|
-- it under the terms of the GNU General Public License as published by
|
24 |
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
25 |
|
|
-- (at your option) any later version.
|
26 |
|
|
|
27 |
|
|
-- This program is distributed in the hope that it will be useful,
|
28 |
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
29 |
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
30 |
|
|
-- GNU General Public License for more details.
|
31 |
|
|
|
32 |
|
|
-- You should have received a copy of the GNU General Public License
|
33 |
|
|
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
34 |
|
|
|
35 |
|
|
entity pi_2 is
|
36 |
|
|
port(a_1_in : in std_logic_vector(31 downto 0);
|
37 |
|
|
a_2_in : in std_logic_vector(31 downto 0);
|
38 |
|
|
a_3_in : in std_logic_vector(31 downto 0);
|
39 |
|
|
a_1_out : out std_logic_vector(31 downto 0);
|
40 |
|
|
a_2_out : out std_logic_vector(31 downto 0);
|
41 |
|
|
a_3_out : out std_logic_vector(31 downto 0));
|
42 |
|
|
end pi_2;
|
43 |
|
|
|
44 |
|
|
architecture Behavioral of pi_2 is
|
45 |
|
|
|
46 |
|
|
begin
|
47 |
|
|
|
48 |
|
|
a_1_out <= a_1_in(0) & a_1_in(31 downto 1);
|
49 |
|
|
a_2_out <= a_2_in(4 downto 0) & a_2_in(31 downto 5);
|
50 |
|
|
a_3_out <= a_3_in(1 downto 0) & a_3_in(31 downto 2);
|
51 |
|
|
|
52 |
|
|
end Behavioral;
|
53 |
|
|
|