3765|3

1

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

刚刚开始用Verilog编写东西,出现如下问题,求解 [复制链接]

刚刚开始用Verilog编写东西,出现如下问题,求解。代码如下:

module mux(select_0,a,b,select,outa1,outb1,outa2,outb2,outa3,outb3,outa4,outb4,outa5,outb5,outa6,outb6,outa7,outb7,outa8,outb8);
input [8:1] a,b;
input [3:1] select;
input select_0;
output [8:1] outa1,outb1,outa2,outb2,outa3,outb3,outa4,outb4,outa5,outb5,outa6,outb6,outa7,outb7,outa8,outb8;
reg [8:1] outa1,outb1,outa2,outb2,outa3,outb3,outa4,outb4,outa5,outb5,outa6,outb6,outa7,outb7,outa8,outb8;
always @ (a or b or select or select_0)
begin
if(select_0)
begin
  case(select)
   3'b000:outa1=a,outb1<=b;
   3'b001:outa2=a;outb2=b;
   3'b010:outa3=a,outb3=b;
   3'b011:outa4=a,outb4=b;
   3'b100:outa5=a,outb5=b;
   3'b101:outa6=a,outb6=b;
   3'b110:outa7=a,outb7=b;
   3'b111:outa8=a,outb8=b;
   default:null;
  endcase
end
end
endmodule


报错如下:
Error (10170): Verilog HDL syntax error at mux.v(14) near text ",";  expecting ";"
Error (10170): Verilog HDL syntax error at mux.v(15) near text "="
Error (10170): Verilog HDL syntax error at mux.v(16) near text ",";  expecting ";"
Error (10170): Verilog HDL syntax error at mux.v(17) near text ",";  expecting ";"
Error (10170): Verilog HDL syntax error at mux.v(18) near text ",";  expecting ";"
Error (10170): Verilog HDL syntax error at mux.v(19) near text ",";  expecting ";"
Error (10170): Verilog HDL syntax error at mux.v(20) near text ",";  expecting ";"
Error (10170): Verilog HDL syntax error at mux.v(21) near text ",";  expecting ";"
Error (10112): Ignored design unit "mux" at mux.v(1) due to previous errors
Error: Quartus II Analysis & Synthesis was unsuccessful. 9 errors, 0 warnings
Error: Peak virtual memory: 164 megabytes
Error: Processing ended: Sun Oct 28 10:52:47 2012
Error: Elapsed time: 00:00:01
Error: Total CPU time (on all processors): 00:00:01
Error: Quartus II Full Compilation was unsuccessful. 11 errors, 0 warnings
此帖出自FPGA/CPLD论坛

最新回复

都是些语法错误,对照书本即可解决。  详情 回复 发表于 2012-10-29 20:54
点赞 关注
 

回复
举报

116

帖子

0

TA的资源

一粒金砂(高级)

沙发
 
你这是在瞎写
此帖出自FPGA/CPLD论坛
 
 

回复

269

帖子

0

TA的资源

纯净的硅(中级)

板凳
 
错误信息提示 已经很到位了
此帖出自FPGA/CPLD论坛
个人签名一个人,一本书,一杯茶,一帘梦。
 
 
 

回复

6892

帖子

0

TA的资源

五彩晶圆(高级)

4
 
都是些语法错误,对照书本即可解决。
此帖出自FPGA/CPLD论坛
个人签名一个为理想不懈前进的人,一个永不言败人!
http://shop57496282.taobao.com/
欢迎光临网上店铺!
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表