Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
15 years ago

Can't fit design in device

Hi All!

I'm using EPM240T100 that has 240 logic elements. While compliling simple program i get an error:

Can't fit design in device.

For example this simple piece of code adds 42 logic elements:


process(CLK,REAR_ON)
begin
  if(rising_edge(CLK)) then
     if(REAR_ON <= '1') then
       reardim <= NAVDIM;
    else
       reardim <= "00000";
    end if;  
  end if; 
end process;

before 217/240(90%)

after 259/240(108%)

What do i miss?

14 Replies