Hi,
Does anyone know if Signal Tap can be used with .pof? If yes is there any guide? Thanks!
Regards,
Vinhael
Does anyone know if Signal Tap can be used with .pof? If yes is there any guide? Thanks!
Regards,
Vinhael
Error (14566): Could not place 31 periphery component(s) due to conflicts with existing constraints (31 pin(s))
Error (175020): Illegal constraint of pin to the region (89, 69) to (89, 80): no valid locations in region
Info (14596): Information about the failing component(s):
Info (175028): The pin name(s): HPS_DDR3_RZQ
Error (16234): No legal location could be found out of 1 considered location(s). Reasons why each location could not be used are summarized below:
Error (184016): There were not enough single-ended input pin locations available (1 location affected)
Info (175029): D27
Info (175015): The I/O pad HPS_DDR3_RZQ is constrained to the location PIN_D27 due to: User Location Constraints (PIN_D27)
Info (14709): The constrained I/O pad is contained within this pin
Error (175020): Illegal constraint of pin to the region (89, 69) to (89, 80): no valid locations in region
Info (14596): Information about the failing component(s):
Info (175028): The pin name(s): HPS_DDR3_ADDR[0]
Error (16234): No legal location could be found out of 1 considered location(s). Reasons why each location could not be used are summarized below:
Error (184016): There were not enough single-ended output pin locations available (1 location affected)
Info (175029): F26
Info (175015): The I/O pad HPS_DDR3_ADDR[0] is constrained to the location PIN_F26 due to: User Location Constraints (PIN_F26)
Info (14709): The constrained I/O pad is contained within this pin
reg [31:0] final_result;
reg [31:0] previous_result;
reg [31:0] counter;
always @ (*) begin
case(fsm_cs)
FSM_START: begin
counter <= 0;
final_result <= 0;
(to FSN_1)
end
FSM_1: begin
previous_result <= final_result;
(begin some calculation)
end
..........
FSM: begin
counter <= w_result;
final_result <= w_result + previous_result;
(back to FSM_1)
end