Verilog编写7人投票选择器

更新时间:2023-05-07 06:27:48 阅读: 评论:0

Verilog编写7人投票选择器
Verilog编写7人投票选择器
module vote7(pass,vote,abnt,agree,object,outabnt); outputpass,agree,object,outabnt;
input[6:0] vote,abnt;
reg[2:0] object,agree,outabnt;
integeri;
reg pass;
always@(abnt or vote)
begin
object=0;
agree=0;
outabnt=7;
for(i=0;i<=6;i=i+1)
begin
if(abnt[i])
begin
outabnt=outabnt-1;
if(vote[i]) agree=agree+1;
el object=object+1;
end
end
if(agree[2:0]>=object[2:0]) pass=1;
el pass=0;
end
endmodule

本文发布于:2023-05-07 06:27:48,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/546111.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:选择器   编写   投票
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图