代码搜索:Carry

找到约 8,060 项符合「Carry」的源代码

代码结果 8,060
www.eeworm.com/read/475934/6770159

vhd freq.vhd

LIBRARY IEEE; USE IEEE.STD_LOGIC_1164.ALL; ENTITY FREQ IS PORT(FSIN:IN STD_LOGIC; CLK:IN STD_LOGIC; DOUT:OUT STD_LOGIC_VECTOR(31 DOWNTO 0)); END FREQ; ARCHITECTURE ART OF FREQ IS
www.eeworm.com/read/369385/9651360

vhd mb1.vhd

LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.std_logic_unsigned.ALL; -------------------- ENTITY MB1 IS PORT(clk:in std_logic; ENA: IN std_logic; clr:in std_
www.eeworm.com/read/368362/9700017

vhd counter5.vhd

library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity COUNTER_5 is port( RST: in std_logic; CLK: in std_logic; COUNTER_Q: out std_logic_vector(4 downto 0); CARRY:
www.eeworm.com/read/290293/8491536

c liptimer.c

/* touch lippar.h compile lip.c to produce lip.o compile and run timer.c (using lip.o), produces non-empty lippar.h recompile lip.c to produce new lip.o */ #include #include
www.eeworm.com/read/386996/8714382

c liptimer.c

/* touch lippar.h compile lip.c to produce lip.o compile and run timer.c (using lip.o), produces non-empty lippar.h recompile lip.c to produce new lip.o */ #include #include
www.eeworm.com/read/385455/8804477

txt softice分析cih的结果.txt

发信人: TBsoft (TBsoft), 信区: Virus 标 题: SoftIce分析的结果[转载] 发信站: 武汉白云黄鹤站 (Mon Oct 26 10:51:47 1998) , 站内信件 发信人: Nova_Zhao@bbs.ustc.edu.cn (真生命), 信区: virus 标 题: SoftIce分析的结果 发信站: 中国科大BBS
www.eeworm.com/read/174700/9576878

lrc ace of base - life is a flower.lrc

[ti:Life Is A Flower] [ar:Ace of base] [al:] [by:] [00:03.54]Life Is A Flower [00:06.27] [00:10.59]We live in a free world [00:13.66]I whistle down the wind [00:15.57]Carry on smiling [00:1
www.eeworm.com/read/169651/9848011

asm lbn8086.asm

;;; Assembly primitives for bignum library, 80x86 family. ;;; ;;; Copyright (c) 1995, Colin Plumb. ;;; For licensing and other legal details, see the file legal.c. ;;; ;;; Several primitives are inclu
www.eeworm.com/read/168333/9919851

txt decstrround.txt

//本函数将数字格式的字符串四舍五入 //参数说明: //string DecStr:输入待四舍五入的数字字符串 //integer Digit:保留小数位数 //boolean FillZero:少于保留位数则用0填充 /********变量定义**************************************/ integer i,p,potLt Boolean Dec
www.eeworm.com/read/168333/9919874

txt decstrround.txt

function DecStrRound(DecStr:String;Digit:integer;FillZero:boolean):string;//四舍五入函数 //本函数将数字格式的字符串四舍五入 //Digit:保留小数位数 //FillZero:少于保留位数则用0填充 var i,P,PotLt:integer; DecError:b