代码搜索:Adder
找到约 6,792 项符合「Adder」的源代码
代码结果 6,792
www.eeworm.com/read/192196/8399781
vhd adder.vhd
LIBRARY IEEE;
USE ieee.std_logic_1164.all;
ENTITY adder IS
PORT(A0,A1,A2,A3,B0,B1,B2,B3,CI: IN std_logic;
S0,S1,S2,S3,CO: OUT std_logic
);
END adder;
ARCHITECTURE ad4 OF adder IS
COMPO
www.eeworm.com/read/433021/8551525
vhd adder.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
--use work.ISCAS.all;
entity adder is
Port ( a : in std_logic_vector(15 down
www.eeworm.com/read/433021/8551526
ise adder.ise
www.eeworm.com/read/433021/8551532
ut adder.ut
-w
-g DebugBitstream:No
-g Binary:no
-g Gclkdel0:11111
-g Gclkdel1:11111
-g Gclkdel2:11111
-g Gclkdel3:11111
-g ConfigRate:4
-g CclkPin:PullUp
-g M0Pin:PullUp
-g M1Pin:PullUp
-g M2Pin:PullU
www.eeworm.com/read/288064/8654021
doc adder.doc
www.eeworm.com/read/429004/8824848
v adder.v
module adder(cout,sum,a,b,cin);
parameter size=16;
output cout;
output[size-1:0] sum;
input cin;
input[size-1:0] a,b;
assign {cout,sum}=a+b+cin;
endmodule
www.eeworm.com/read/285142/8866247
v adder.v
module adder(cout,sum,a,b,cin);
parameter size=16;
output cout;
output[size-1:0] sum;
input cin;
input[size-1:0] a,b;
assign {cout,sum}=a+b+cin;
endmodule
www.eeworm.com/read/384201/8891126
v adder.v
module adder(cout,sum,a,b,cin);
parameter size=16;
output cout;
output[size-1:0] sum;
input cin;
input[size-1:0] a,b;
assign {cout,sum}=a+b+cin;
endmodule
www.eeworm.com/read/383822/8915531
v adder.v
module adder(cout,sum,a,b,cin);
parameter size=16;
output cout;
output[size-1:0] sum;
input cin;
input[size-1:0] a,b;
assign {cout,sum}=a+b+cin;
endmodule
www.eeworm.com/read/282808/9059531
v adder.v
// megafunction wizard: %LPM_ADD_SUB%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: lpm_add_sub
// ============================================================
// File Name: adder.v
//