代码搜索:adder

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

代码结果 6,792
www.eeworm.com/read/422839/10606485

qpf half_adder.qpf

# 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 any
www.eeworm.com/read/422839/10606489

pof half_adder.pof

www.eeworm.com/read/422839/10606502

done half_adder.done

Wed Feb 25 10:18:01 2009
www.eeworm.com/read/422839/10606505

sof half_adder.sof

www.eeworm.com/read/422839/10606528

qsf half_adder.qsf

# 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 any
www.eeworm.com/read/422839/10606555

dbp half_adder.dbp

www.eeworm.com/read/422839/10606570

pss half_adder.pss

www.eeworm.com/read/422839/10606575

hif half_adder.hif

Version 7.2 Build 175 11/20/2007 Service Pack 1 SJ Full Version 38 2275 OFF OFF OFF OFF ON ON OFF FV_OFF Level2 0 0 VRSM_ON VHSM_ON 0 -- Start Partition -- -- End Partition -- -- St
www.eeworm.com/read/422839/10606595

psp half_adder.psp

www.eeworm.com/read/159552/10640233

v adder16.v

`include "adder.v" module adder16(cout,sum,a,b,cin); output cout; parameter my_size=16; output[my_size-1:0] sum; input[my_size-1:0] a,b; input cin; adder my_adder(cout,sum,a,b,cin); endmod