end acc46 ;clkenb : in std_logic;
sysclk : in std_logic;
gblreset : in std_logic;
a : in std_logic_vector (45 downto 0);
b : in std_logic_vector (45 downto 0);
y : buffer std_logic_vector (45 downto 0)
);
end process acc_p;if(gblreset = '1') then
y <= ivalue(45 downto 0);
elsif (sysclk'event and sysclk = '1') then
if(clkenb = '1') then
y <= a + b;
end if;
end if;