代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/386853/8723316
v ripple_carry_adder.v
// 二进制行波进位加法器
module ripple_carry_adder(x, y, cin, sum, cout);
parameter N = 8;
input cin;
input [N-1:0] x, y;
output [N-1:0] sum;
output cout;
reg cout;
reg [N-1:0] sum;
reg
www.eeworm.com/read/386852/8723322
v carry_save_mult.v
// N比特乘M比特的二进制进位存储乘法器
module carry_save_mult(x_in, y_in, p);
parameter N = 4,
M = 4;
input [N-1:0] x_in;
input [M-1:0] y_in;
output [N+M-1:0] p;
reg [N+M-1:0] p;
reg [M:0]
www.eeworm.com/read/386852/8723324
v ripple_carry_mult.v
// N比特乘M比特的二进制行波进位乘法器
module ripple_carry_mult(x_in, y_in, p);
parameter N = 4,
M = 4;
input [N-1:0] x_in;
input [M-1:0] y_in;
output [N+M-1:0] p;
reg [N+M-1:0] p;
reg [M:0]
www.eeworm.com/read/385917/8781143
sof carry_propogate_adder.sof
www.eeworm.com/read/385917/8781209
vwf carry_propogate_adder.vwf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/385917/8781210
pof carry_propogate_adder.pof
www.eeworm.com/read/385917/8781212
qsf carry_propogate_adder.qsf
# Copyright (C) 1991-2006 Altera Corporation
# Your use of Altera Corporation's design tools, logic functions
# and other software and tools, and its AMPP partner logic
# functions, and any outpu
www.eeworm.com/read/385917/8781213
qpf carry_propogate_adder.qpf
# Copyright (C) 1991-2006 Altera Corporation
# Your use of Altera Corporation's design tools, logic functions
# and other software and tools, and its AMPP partner logic
# functions, and any outpu
www.eeworm.com/read/385917/8781241