QMA
Member level 4
Dear all
I am trying a code in verilog with the following specs;
I am getting the subjected error while synthesizing. Please tell me why i am getting the error and how can i overcome it.
I am trying a code in verilog with the following specs;
Code Verilog - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 integer i; reg [4:0]R_addr; reg [7:0]temp; reg [7:0] ram [0:7]; R_addr = R_addr - 1'b1; for(i = 0; i<=R_addr; i = i+1) begin temp = ram[i]; ------ ------ ------ end
I am getting the subjected error while synthesizing. Please tell me why i am getting the error and how can i overcome it.