]> AND Private Git Repository - blast.git/blob - lib/implementations/multadd_core.vhd
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
started VHDL generation of GroupBlock
[blast.git] / lib / implementations / multadd_core.vhd
1 -------------------------------------------------------------------------------
2 --
3 --  File          : multadd_core.vhd
4 --  Related files : 
5 --
6 --  Author(s)     : stephane Domas (sdomas@univ-fcomte.fr)
7 --
8 --  Creation Date : 2015/04/27
9 --
10 --  Description   : This component is a multadd
11 --
12 --  Note          : No notes
13 --
14 -------------------------------------------------------------------------------
15
16 library IEEE;
17 use IEEE.std_logic_1164.all;
18 use IEEE.numeric_std.all;
19
20 entity multadd_core is
21   generic (
22     wb_data_width : integer := 16;
23     wb_addr_width : integer := 12
24     );
25   port (
26     -- clk/rst from multadd wrapper
27     rst : in std_logic;
28     clk : in std_logic;
29
30     -- registers r/w via wishbone
31     wb_do_op : in  std_logic;
32     wb_c     : in  std_logic_vector(wb_data_width-1 downto 0);
33     wb_d     : out std_logic_vector(2*wb_data_width-1 downto 0);
34
35     -- data ports
36     val1_i : in  std_logic_vector(17 downto 0);
37     val2_i : in  std_logic_vector(17 downto 0);
38     res_o : out std_logic_vector(35 downto 0)
39     );
40 end multadd_core;
41
42
43 architecture multadd_core_1 of multadd_core is
44
45      -- Signals
46   signal a_s      : signed(17 downto 0);
47   signal b_s      : signed(17 downto 0);
48   signal c_s      : signed(35 downto 0);
49   signal result   : signed(35 downto 0);
50
51 begin
52
53   a_s <= signed(val1_i);
54   b_s <= signed(val2_i);
55   c_s <= resize(signed(wb_c),36);
56   
57   do_mult_process : process (clk, rst)
58   begin
59     if rst = '1' then
60       
61       result <= to_signed(0,36);
62       
63     elsif (rising_edge(clk)) then
64
65       if wb_do_op = '1' then
66         result <= a_s * b_s + c_s;
67       end if;
68       
69     end if;
70   end process do_mult_process;
71
72   res_o <= std_logic_vector(result);
73   wb_d <= std_logic_vector(resize(result,32);
74   
75 end multadd_core_1;
76