Altera_Forum
Honored Contributor
15 years agoCan'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?