欢迎来到天天文库
浏览记录
ID:56867411
大小:12.50 KB
页数:1页
时间:2020-07-16
《数码管按键计数verilog程序(FPGA CPLD).doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、moduleshumaguan(clk,rst,key,control,y);inputclk,rst;inputkey;outputcontrol;output[6:0]y;regcontrol;reg[6:0]y;reg[3:0]i;reg[9:0]keytemp;always@(posedgeclkornegedgerst)if(0==rst)begini<=0;keytemp<=0;y<=127;control<=0;endelsebeginkeytemp<={keytemp[8:0],key};if(keytemp==10'b)i<=i+
2、1;control<=1;case(i)//译码程序4'b0000:y<=7'b1111_110;4'b0001:y<=7'b0110_000;4'b0010:y<=7'b1101_101;4'b0011:y<=7'b1111_001;4'b0100:y<=7'b0110_011;4'b0101:y<=7'b1011_011;4'b0110:y<=7'b1011_111;4'b0111:y<=7'b1110_000;4'b1000:y<=7'b1111_111;4'b1001:y<=7'b1111_011;default:y<=7'b0000_00
3、0;//displaynothingifnum>9endcaseif(i==10)i<=0;endendmodule
此文档下载收益归作者所有