|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
有几个错误,总是不知道怎么回事,求点拨1.if( ~( (xa_t.or_reduce())|(ya_t.or_reduce()) ) )
这里xa_t和ya_t都是sc_bv<256>变量
出错
error C2666: '|' : 10 overloads have similar conversions
2.divide_negya_t = (1,~ya_t) + 1;
divide_negya_t和ya_t都是sc_biguint类型
出错
error C2678: binary '+' : no operator defined which takes a left-hand operand of type 'class sc_dt::sc_unsigned_concref_r<class sc_dt::sc_unsigned,class sc_dt::sc_unsigned>' (or there is no acceptable conversion)
这个error C2678还有好几处同样的问题
比如
gety_resultxac_t = (0,gety_xa_t) + gety_negxc_t;
这个_t都是sc_biguint型,是由信号赋值过来的
3.multi_datax_t = ( 0,0,multi_x_t );
_t也是sc_biguint,并由信号赋值过来
出错
error C2679: binary '=' : no operator defined which takes a right-hand operand of type 'class sc_dt::sc_unsigned_concref_r<class sc_dt::sc_unsigned,class sc_dt::sc_unsigned>' (or there is no acceptable conversion)
这个错也有好几处
困扰好几天了,也不知道怎么回事
|
|