代码搜索:Booth
找到约 978 项符合「Booth」的源代码
代码结果 978
www.eeworm.com/read/208358/4993540
vo booth_com.vo
// Copyright (C) 1991-2005 Altera Corporation
// Your use of Altera Corporation's design tools, logic functions
// and other software and tools, and its AMPP partner logic
// functions, and
www.eeworm.com/read/208358/4993544
hif booth_com.hif
Version 5.0 Build 171 11/03/2005 Service Pack 2 SJ Full Version
33
1674
OFF
OFF
OFF
OFF
OFF
FV_OFF
VRSM_ON
VHSM_ON
0
# entity
booth_com
# logic_option {
AUTO_RAM_RECOGNITION
ON
}
# c
www.eeworm.com/read/473392/6851914
v t_booth.v
module T_Booth();
reg[7:0] A;
reg[8:0] B;
wire [8:0] B0,B1,B2,B3;
wire [15:0] SUM;
BoothMul boo(A,B,B0,B1,B2,B3,SUM);
initial
begin
A=0;
B=0;
#10 A=-9;
#10 B=17;
#100 $stop;
end
e
www.eeworm.com/read/473392/6851946
v t_booth.v
module T_Booth();
reg[7:0] A;
reg[8:0] B;
wire [15:0] SUM;
BoothMul boo(A,B,SUM);
initial
begin
A=0;
B=0;
#10 A=-9;
#10 B=17;
#10 A=-121;
#10 B=234;
#10 B=-127;
#10 B=
www.eeworm.com/read/412239/11208794
v testbench_booth.v
/////////////////////////////////////////////////////////////
// Verilog Test Bench v2.0, 3-29-2000 //
// ECE 371 EMR, Spring 2000 //
// By Steve B
www.eeworm.com/read/412239/11208836
out test_booth.out
Multiplier Test Log
___________________
Test# 1 run without incident.
================
Multiplier_A=00000020 Multiplier_B=00000100 Multiplier_Result=00002000 Expected_Result=00002000
========
www.eeworm.com/read/146521/12640868
vhd booth_mul.vhd
--布斯乘法
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY booth_mul IS
GENERIC(N: integer := 4);
PORT(A :IN STD_LOGIC_VECTOR(N-1 DOWNTO 0);
B :IN
www.eeworm.com/read/132821/5909223
el mult.el
(progn
(load "../g1")
(load "../l1")
(load "../b1")
(load "m1")
(load "c1")
(load "compressor")
(load "components")
(setq b 128)
(setq w 4)
(setq h (gen-tree b w ))
www.eeworm.com/read/264839/7110947
bak booth_tp.v.bak
`timescale 1ns/1ns
module booth_tp();
reg[2:0] i;
wire[2:0] b0,b1,b2,b3;
wire[7:0] H;
booth inst_cnt(i,H,b0,b1,b2,b3);
initial
begin
i=0;
#10 i=1;
#10 i=2;
#10 i=3;
#10 i=4;
#10 i=5
www.eeworm.com/read/383505/8941205