stay_in_chaos
Junior Member level 1

Hello every body,
when i was synthesizing a Design with xilinx tool.it showed some error were i am using a two dimentional array ,i think the tool is not able to understand the way the design is been written that's why it's sowing FATAL ERROR
in this lines
The ERROR REPORT is FATAL ERROR( it shows nothing else)
if(count1==2'b00)begin
store[add][63:0]<=lbi_liga_data;
end else if(count1==2'b01)begin
store[add][127:64]<=lbi_liga_data;
end else if(count1==2'b10)begin
store[add][191:128]<=lbi_liga_data;
end else if(count1==2'b11)begin
store[add][255:192]<=lbi_liga_data;
here i am storing data in memory of size{ [255:0]store[1023:0]
here as the data is in burst so it is not possible to use reg instead of Memory.
can you suggest some logic so that the error is fixed during synthesis.
Thanks and regards
stay_in_chaos
when i was synthesizing a Design with xilinx tool.it showed some error were i am using a two dimentional array ,i think the tool is not able to understand the way the design is been written that's why it's sowing FATAL ERROR
in this lines
The ERROR REPORT is FATAL ERROR( it shows nothing else)
if(count1==2'b00)begin
store[add][63:0]<=lbi_liga_data;
end else if(count1==2'b01)begin
store[add][127:64]<=lbi_liga_data;
end else if(count1==2'b10)begin
store[add][191:128]<=lbi_liga_data;
end else if(count1==2'b11)begin
store[add][255:192]<=lbi_liga_data;
here i am storing data in memory of size{ [255:0]store[1023:0]
here as the data is in burst so it is not possible to use reg instead of Memory.
can you suggest some logic so that the error is fixed during synthesis.
Thanks and regards
stay_in_chaos