错误消息“抱歉:当前不支持在always_*进程中选择常量(将包括所有位)。”在系统Verilog中
我需要使用“案例”语句来实现4位优先级编码器,并且代码如下:
module case2(
input [3 : 0] in,
output logic [1 : 0] pos
);
always_comb begin
case(1)
in[0]:pos=2'b00;
in[1]:pos=2'b01;
in[2]:pos=2'b10;
in[3]:pos=2'b11;
default:pos=2'b00;
endcase
end
endmodule
看来我不能将'1'用作efference_comb block中的案例。我在Google中搜索了,但没有任何帮助。我怎么能解决这个问题?不能将常数用作案件的典范?我认为这是不合理的。 感谢您的建议!
I need to use "case" statement to implement a 4-bit priority encoder,and the code is showed below:
module case2(
input [3 : 0] in,
output logic [1 : 0] pos
);
always_comb begin
case(1)
in[0]:pos=2'b00;
in[1]:pos=2'b01;
in[2]:pos=2'b10;
in[3]:pos=2'b11;
default:pos=2'b00;
endcase
end
endmodule
It seems that I can't use '1' as a expr of case in the always_comb block.I have searched in google,but nothing helpful is acquired.How can I solve this problem?Is constant can not be used as a expr of case?I think it's unreasonable.
Thanks for your advice!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“当前不支持”表示该工具认为代码有效,但尚未实现。你没有说你用的是什么工具。
总有蛮力方法:
另一种编写方法是使用
priority if
语句"Not currently supported" means the tool believes the code is valid, but they have not implemented it yet. You did not say what tool you are using.
There is always the brute force approach:
Another way you can write this is with a
priority if
statement