笔算乘法(进位)教学设计三.doc
2021-12-22 11:00:34 18KB
笔算不进位乘法.doc
2021-12-22 11:00:31 18KB
20以内进位加法表.ppt
2021-12-20 11:04:03 1.12MB 教学课件
https://blog.csdn.net/qq_55895529/article/details/122019594 的附带解释文档
2021-12-19 21:03:00 103KB 51单片机
1
veilog 的四位脉动进位计数器,附带激励块
2021-12-16 14:14:05 389KB verilog 脉动进位
1
scii 进位 转换 专家 破解 ascii表 ascii转换 无毒好用!!!
2021-12-14 10:11:32 14KB ascii进位专家 破解 ascii表 ascii转换
1
FPGA设计时分秒进位数字时钟verilog实验Quartus9.1工程源码+设计说明文件 /* 本实验实现一个能显示小时,分钟,秒的数字时钟。 */ module clock(clk,rst,dataout,en); input clk,rst; output[7:0] dataout; reg[7:0] dataout; output[7:0] en; reg[7:0] en; reg[3:0] dataout_buf[7:0]; reg[25:0] cnt; reg[15:0] cnt_scan; reg[3:0] dataout_code; wire[5:0] cal; //各级进位标志 assign cal[0]=(dataout_buf[0]==9)?1:0; assign cal[1]=(cal[0]&&dataout_buf[1]==5)?1:0; assign cal[2]=(cal[1]&&dataout_buf[3]==9)?1:0; assign cal[3]=(cal[2]&&dataout_buf[4]==5)?1:0; assign cal[4]=(cal[3]&&dataout_buf[6]==9)?1:0; assign cal[5]=(cal[3]&&dataout_buf[6]==2&&dataout_buf[7]==1)?1:0; always@(posedge clk or negedge rst) begin if(!rst) begin cnt_scan<=0; en<=8'b1111_1110; end else begin cnt_scan<=cnt_scan+1; if(cnt_scan==16'hffff) begin en[7:1]<=en[6:0]; en[0]<=en[7]; end end end always@(*) begin case(en) 8'b1111_1110: dataout_code=dataout_buf[0]; 8'b1111_1101: dataout_code=dataout_buf[1]; 8'b1111_1011: dataout_code=dataout_buf[2]; 8'b1111_0111: dataout_code=dataout_buf[3]; 8'b1110_1111: dataout_code=dataout_buf[4]; 8'b1101_1111: dataout_code=dataout_buf[5]; 8'b1011_1111: dataout_code=dataout_buf[6]; 8'b0111_1111: dataout_code=dataout_buf[7]; default: dataout_code=dataout_buf[0]; endcase end always@(posedge clk or negedge rst) begin if(!rst) cnt<=0; else if(cnt!=40000000) cnt<=cnt+1; else cnt<=0; end always@(posedge clk or negedge rst) //实现计数和进位的功能 begin if(!rst) begin dataout_buf[0]<=0; dataout_buf[1]<=0; dataout_buf[2]<=15; dataout_buf[3]<=0; dataout_buf[4]<=0; dataout_buf[5]<=15; dataout_buf[6]<=2; dataout_buf[7]<=1; end else begin if(cnt==26'd40000000) begin if(!cal[0]) dataout_buf[0]<=dataout_buf[0]+1; else begin dataout_buf[0]
进位的8位全加器的 vhd程序 这是源代码 验证无误
2021-11-26 19:32:00 423B 进位 8位 加法器 add_8
1
100以内进位加法列竖式.docx
2021-11-25 12:01:51 28KB
基于Verilog代码实现的Wallace树8*8乘法器+16位超前进位加法器
2021-11-23 18:16:21 3KB Verilog Wallace 超前进位 乘法器
1