代码搜索:adder

找到约 6,792 项符合「adder」的源代码

代码结果 6,792
www.eeworm.com/read/281861/9128622

vhd adder.vhd

www.eeworm.com/read/379198/9204779

v adder.v

//Author : SpAcW (I'm a chinese student ,hah~) // If you are a member of IC design ,I would like to be your buddy! // Email : duandebian@gmail.com module adder(a,b,cin,sum,flag,overflow); input [
www.eeworm.com/read/378479/9229744

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/180496/9304857

v adder.v

`include "Def_StructureParameter.v" module WordAdder(out_Result, out_Carry, out_Zero, out_Neg, out_Overflow, in_LeftOperand, in_RightOperand, in_LowCarry); output [`WordWi
www.eeworm.com/read/376175/9326102

bdf adder.bdf

/* 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/376175/9326146

bsf adder.bsf

/* 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/374228/9415394

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/372505/9507534

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/169221/9874956

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/362310/10005872

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