b6840e73250b9bd0da35b72b830de0827c105941
[calu.git] / cpu / src / extension_imp.vhd
1 library IEEE;
2 use IEEE.std_logic_1164.all;
3 use IEEE.numeric_std.all;
4
5 use work.common_pkg.all;
6 use work.extension_pkg.all;
7 use work.extension_imp_pkg.all;
8
9
10 entity extension_imp is
11
12         generic (
13                         -- active reset value
14                         RESET_VALUE : std_logic
15                         );
16         port(
17                 --System inputs
18                         clk :   in std_logic;
19                         reset : in std_logic;
20                 -- general extension interface                  
21                         ext_reg  : in extmod_rec;
22                         data_out : out gp_register_t;
23                 -- Input
24
25                 -- Ouput
26                         im_addr : out gp_register_t;
27                         im_data : out gp_register_t;
28                         new_im_data_out : out std_logic 
29                 );
30                 
31 end extension_imp;