代码搜索:Booth
找到约 978 项符合「Booth」的源代码
代码结果 978
www.eeworm.com/read/260654/11712073
txt booth.txt
布斯乘法器,vhdl
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available i
www.eeworm.com/read/225948/14509983
v booth.v
//Name: Tam N. Nguyen, Thinh le, & Long Pham
//Behave of Booth Multiplier.
`define MULT_NUM_STATE_BITS 2
`define MULT_IDLE 2'b00
`define MULT_SHIFT 2'b01
`define MULT_RESULT 2'b10
`timescale
www.eeworm.com/read/213968/15119135
v booth.v
module booth(a2,a1,a0,d); //booth编码模块
input a2,a1,a0; //输入为三个1 bit数
output[2:0] d; //由于输出为五种信号,故采用3 bit数表示
reg[2:0] d;
always@(a2 or a1 or a0) //按照booth编码表得出结果
begin
case({a2,a1,a0})
www.eeworm.com/read/208269/15249328
vhd booth.vhd
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHD
www.eeworm.com/read/18310/783766
v booth.v
module booth(h,b0,b1,b2,b3);
output[2:0] b0,b1,b2,b3;
input[7:0] h;
reg[2:0] b0,b1,b2,b3;
wire t;
assign t=0;
always @(h)
begin
case({h[1],h[0],t})
3'b000:b0=3'b000;
3'b001:b
www.eeworm.com/read/31975/1030339
v booth.v
//Name: Tam N. Nguyen, Thinh le, & Long Pham
//Behave of Booth Multiplier.
`define MULT_NUM_STATE_BITS 2
`define MULT_IDLE 2'b00
`define MULT_SHIFT 2'b01
`define MULT_RESULT 2'b10
`timescale
www.eeworm.com/read/31975/1030371
v booth.v
//Name: Tam N. Nguyen, Thinh le, & Long Pham
//Behave of Booth Multiplier.
`define MULT_NUM_STATE_BITS 2
`define MULT_IDLE 2'b00
`define MULT_SHIFT 2'b01
`define MULT_RESULT 2'b10
`timescale
www.eeworm.com/read/332467/3398126
h booth.h
// Booth.h: interface for the CBooth class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BOOTH_H__8DDAB97F_6B97_43F3_9EA8_8DC3E505968B__INCLUDED_)
#
www.eeworm.com/read/332467/3398176
cpp booth.cpp
// Booth.cpp: implementation of the CBooth class.
//
//////////////////////////////////////////////////////////////////////
#include "windows.h"
#include "Booth.h"
#include "User.h"
#include "