在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 3807|回复: 8

【求助】关于quartersII的一个问题

[复制链接]
发表于 2007-12-24 13:57:30 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
我是一个新手,刚开始学verilog,下面这个例子程序在编译的时候系统告诉我Error: Run Analysis and Synthesis (quartus_map) with revision "try3" for --rev option before running Compiler Database Interface (quartus_cdb)
好像是数据库的问题,怎么解决啊? 请高手帮忙!


module try3;
reg [3:0] A,B;
reg C_IN;
wire [3:0] SUM;
wire C_OUT;
////
full_add4 FA1_4(SUM,C_OUT,A,B,C_IN);
/////
initial
   begin
    $monitor($time,"A=%b,B=%b,C_IN=%b,---C_OUT=%b, SUM=%b\n", A,B,C_IN,C_OUT,SUM);
   end
//激励
initial
   begin
      A=4'd0; B=4'd0;  C_IN=1'd0;
   end
endmodule

module full_add4(sum,c_out,a,b,c_in);
output [3:0] sum;
output c_out;
input [3:0] a,b;
input c_in;
wire c1,c2,c3;
fulladd fa0(sum[0],c1,a[0],b[0],c_in);
fulladd fa1(sum[1],c2,a[1],b[1],c1);
fulladd fa2(sum[2],c3,a[2],b[2],c2);
fulladd fa3(sum[3],c_out,a[3],b[3],c3);
endmodule

module fulladd(sum,c_out,a,b,c_in);
output sum,c_out;
input a,b,c_in;
wire s1,c1,c2;
xor(s1,a,b);
and(c1,a,b);
xor(sum,s1,c_in);
and(c2,s1,c_in);
xor(c_out,c2,c1);
endmodule

[ 本帖最后由 tnttnp 于 2007-12-24 16:44 编辑 ]
 楼主| 发表于 2007-12-24 14:48:27 | 显示全部楼层
高手们呢,快来帮忙看看啊
 楼主| 发表于 2007-12-25 09:21:41 | 显示全部楼层
都快沉了,都没人理我啊
发表于 2007-12-26 09:20:09 | 显示全部楼层

帮你顶下啊~~~~~~

汗。。。俺不懂VERILOG,但是论坛里可是有许多大虾懂啊,帮你顶下吧。。。。。。
 楼主| 发表于 2007-12-26 16:20:19 | 显示全部楼层
太谢谢你了!!
发表于 2007-12-26 17:59:12 | 显示全部楼层
我也是刚学,不怎么看的懂,有谁知道讨论一下呀!
发表于 2009-3-8 23:32:41 | 显示全部楼层
Error: Run Analysis and Synthesis (quartus_map) with revision "try3" for --rev option before running Compiler Database Interface (quartus_cdb)

翻译过来就是:在运行compiler前运行 analysis and synthesis
发表于 2009-3-8 23:34:23 | 显示全部楼层
先运行processing 下start 的analysis and synthsis
发表于 2009-3-8 23:35:49 | 显示全部楼层
不行联系我hiphyliu@qq.com
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /1 下一条

小黑屋| 手机版| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-11-16 18:48 , Processed in 0.025623 second(s), 8 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表