完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
原程序代码如下: module fsm(Clock,Reset,A,K2,K1,state);input Clock,Reset,A; output K2,K1; output[1:0]state; reg K2,K1; reg[1:0]state; parameter Idle=2'b00,Start=2'b01,Stop=2'b10,Clear=2'b11; always@(posedge Clock) if(!Reset) begin state<=Idle; K2<=0; K1<=0; end else case(state) Idle:if(A) begin state<=Start; K1<=0; end else begin state<=Idle;// K2<=0; K1<=0; end Start:if(!A) state<=Stop; else state<=Start; Stop:if(A) begin state<=Clear; K2<=1; end else begin state<=Stop; K2<=0; K1<=0; end Clear:if(!A) begin state<=Idle; K2<=0; K1<=1; end else begin state<=Clear;; K2<=0; K1<=1; end default:state<=2'bxx; endcase endmodule 请问程序中红色的代码怎么看的出来的,从状态转移图中感觉看不出来红色代码呀? |
|
相关推荐
1个回答
|
|
这个我记得课本里都是有介绍的
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
1034 浏览 1 评论
助力AIoT应用:在米尔FPGA开发板上实现Tiny YOLO V4
1000 浏览 0 评论
2099 浏览 1 评论
1827 浏览 0 评论
矩阵4x4个按键,如何把识别结果按编号01-16(十进制)显示在两个七段数码管上?
2051 浏览 0 评论
1706 浏览 44 评论
5947 浏览 113 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-12 21:23 , Processed in 0.397543 second(s), Total 39, Slave 32 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号