代码搜索:Carry

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

代码结果 8,060
www.eeworm.com/read/306178/3750548

c npc.c

// npc.c #include inherit CHARACTER; inherit F_CLEAN_UP; object carry_object(string file) { object ob; if( !objectp(ob = new(file)) ) return 0; ob->move(this_object()); return ob;
www.eeworm.com/read/366702/2882481

c gcc-bug-f.c

/* { dg-do compile } */ #include typedef short Word16; typedef int Word32; typedef int Flag; extern Flag Overflow; extern Flag Carry; extern vector signed short table[8]; extern vec
www.eeworm.com/read/359371/2978084

cpp main.cpp

#include #include using namespace std; void print(list& l); int main(void){ list l; for(int j=1; j
www.eeworm.com/read/162614/5530082

c gcc-bug-f.c

/* { dg-do compile } */ #include typedef short Word16; typedef int Word32; typedef int Flag; extern Flag Overflow; extern Flag Carry; extern vector signed short table[8]; extern vec
www.eeworm.com/read/428887/8831356

c big.c

/* 20nov07abu * (c) Software Lab. Alexander Burger */ #include "pico.h" #define MAX MASK // Max digit size 0xFFFF.... #define OVFL ((1
www.eeworm.com/read/384430/8869636

v csa_mult_8m24.v

// This is a program of Carry Save Adder Multiplier. `timescale 1ns/1ps module csa_mult_8m24(a,b,product); input [23:0] a; // 24bit input [7:0] b; // 8bit // input
www.eeworm.com/read/374588/9394816

tdf lpm_divide_oko.tdf

--lpm_divide DEVICE_FAMILY="Cyclone" LPM_DREPRESENTATION="SIGNED" LPM_NREPRESENTATION="SIGNED" LPM_REMAINDERPOSITIVE="FALSE" LPM_WIDTHD=8 LPM_WIDTHN=32 OPTIMIZE_FOR_SPEED=5 denom numer quotient CARRY_
www.eeworm.com/read/374588/9394943

tdf lpm_divide_lko.tdf

--lpm_divide DEVICE_FAMILY="Cyclone" LPM_DREPRESENTATION="SIGNED" LPM_NREPRESENTATION="SIGNED" LPM_REMAINDERPOSITIVE="FALSE" LPM_WIDTHD=5 LPM_WIDTHN=32 OPTIMIZE_FOR_SPEED=5 denom numer quotient CARRY_
www.eeworm.com/read/329914/7109664

vhd clock_pkg.vhd

library ieee; use ieee.std_logic_1164.all;component cnt60 is port(ch,cl : buffer std_logic_vector (3 downto 0); clk : in std_logic ; carry: buffer std_logic ); end component use
www.eeworm.com/read/17885/763980

vhd fen24.vhd

------------------------------------------------- --实体名:fen24 --功 能:24进制计数器 --接 口:clk -时钟输入 -- qout1-个位BCD输出 -- qout2-十位BCD输出 -- carry-进位信号输出 -----------------------