完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
语法错在哪里!!求大神
module traffic_lights; reg clock,red,yellow,green; parameter on=1, off=0, red_tics=350, yellow_tics=30, green_tics=200; initial red=off; initial yellow=off; initial green=off; always begin red=on; light(red,red_tics); yellow=on; light(yellow,yellow_tics); green=on; light(green,green_tics); end task light(color,tics); output color; input [31:0]tics; begin repeat(tics) @(posedge clock); color=off; end endtask always begin #100 clock=0; #100 clock=1; end endmodule ERROR:HDLCompiler:719 - "D:/FPGA_EXP/traffic_lights/traffic_lights.v" Line 38: Port declaration not allowed in light with formal port declaration list ERROR:HDLCompiler:719 - "D:/FPGA_EXP/traffic_lights/traffic_lights.v" Line 39: Port declaration not allowed in light with formal port declaration list ERROR:HDLCompiler:24 - "D:/FPGA_EXP/traffic_lights/traffic_lights.v" Line 31: light expects 4 arguments ERROR:HDLCompiler:24 - "D:/FPGA_EXP/traffic_lights/traffic_lights.v" Line 33: light expects 4 arguments ERROR:HDLCompiler:24 - "D:/FPGA_EXP/traffic_lights/traffic_lights.v" Line 35: light expects 4 arguments ERROR:HDLCompiler:598 - "D:/FPGA_EXP/traffic_lights/traffic_lights.v" Line 21: Module |
|
相关推荐
2个回答
|
|
在“task”语句中不能列出端口名称,即“task light(color,tics);”改为“task light;”。
|
|
|
|
{:20:}
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
1415 浏览 1 评论
助力AIoT应用:在米尔FPGA开发板上实现Tiny YOLO V4
1055 浏览 0 评论
2491 浏览 1 评论
2190 浏览 0 评论
矩阵4x4个按键,如何把识别结果按编号01-16(十进制)显示在两个七段数码管上?
2457 浏览 0 评论
1925 浏览 52 评论
6021 浏览 113 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-25 11:32 , Processed in 0.557433 second(s), Total 76, Slave 58 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号