i have already tried the idea of TDM but i got this error
Error: Out of memory in module quartus_map.exe (2141 megabytes used)
Error: Current module quartus_map ended unexpectedly
here i created a finite state machine which has 2 states assumning i have created 128 computing engine in state1 i will use first 128 as input and in state2 i will use second 128
the code will be as follows
process(clk,rst,state)
begin
--here the part where i create my frames which depend on clock
if(state=state1)then
for i in 0 to 128 loop
wire1(i)<=syst(i);
wire2(i)<=parity(i);
gamma(i)<=wire3(i);
end loop;
state<=state2;
elsif(state=state1)then
for i in 0 to 128 loop
wire1(i)<=syst(i+128);
wire2(i)<=parity(i+128);
gamma(i+128)<=wire3(i);
end loop;
state<=state1;
end if;
end process;
that's right?and what about the error