当前位置:网站首页>【数字IC/FPGA】Booth乘法器

【数字IC/FPGA】Booth乘法器

2022-06-24 10:18:00 FPGA硅农

Booth算法原理

以4bit有符号乘法(A=0111乘以B=0010)为例:
在这里插入图片描述
在这里插入图片描述

代码实现

booth算法的system verilog实现

module booth_mult(
    input logic clk,
    input logic rst,
    input logic signed [7:0] a,
    input logic 
原网站

版权声明
本文为[FPGA硅农]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_40268672/article/details/125407613