|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
我写了一个频率转换器的verilog HDL程序(50转换到20),但是在做时间仿真时候总是出现错误:
Fatal Error 13000: Error reading PLA file e:\tf\program\cpld\p84\p167.tt4
不知道是什么原因造成的,请指教!
程序如下:
module p167( in,rst,out);
parameter delay_time=50;
input in,rst;
output out;
reg mid,out; //mid,out的初始默认值都是0
integer counter;
always@(in)
begin
if(rst==0)
begin
counter=0;
mid=0;
end
else if(counter==4)
begin
mid=~mid;
counter=0;
end
else
counter=counter+1;
end
always@(mid)
begin
if(rst==0)
out=0;
else
begin
out=~out;
#delay_time out=~out;
end
end
endmodule |
|