|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
以下是小弟的一段代码,使用ISE综合时,总是显示下面的结果:
Minimum period: No path found
Minimum input arrival time before clock: No path found
Maximum output required time after clock: No path found
Maximum combinational path delay: No path found
跪求高手指点一二
附上源代码:
module get_mv#(parameter WIDTH = 16)(
input clk,
input rst_n,
input [3:0] md,
input finished,
input N,
input [7:0] can,
input [7:0] can2,
input [7:0] can3,
input [7:0] can4,
input [7:0] temp_bp,
input [WIDTH-1:0] coorda,
input [WIDTH-1:0] coordb,
input [WIDTH-1:0] coordc,
input [WIDTH-1:0] coordd,
output reg mfinished,
output reg [WIDTH-1:0] bmv0,
output reg [WIDTH-1:0] bmv1,
output reg [WIDTH-1:0] bmv2,
output reg [WIDTH-1:0] bmv3,
output reg [3:0] bmode
);
always@(posedge clk)
begin
if(!rst_n)begin
bmv0<=0;bmv1<=0;bmv2<=0;bmv3<=0;
end
else if(((md==`P_16x16)&&(N==4)&&(can==4))||
((md==`P_16x8)&&(N==4)&&(can==4))||
((md==`P_8x16)&&(N==2)&(can==4))||
((md==`P_8x8)&&(N==2)&&(can==4)))begin
if(temp_bp==1)begin
bmv0<={((coorda[15:8]+8'b00000011)<<2)-8'b00111110-8'b00000100,((coorda[7:0]+8'b00000011)<<2)-8'b00111110-8'b00000100};
end
end
end
endmodule |
|