代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/198623/7921317
s dc2.s
/
/
/ routine to add the two centennial numbers
/ pointed to by r2 and r3.
/ a pointer to the result is returned in r1
/ r2 and r3 are preserved
/
/ mov ptr1,r2
/ mov ptr2,r3
/ jsr pc,add3
/ mov r1,..
www.eeworm.com/read/433434/7930371
v counter_4b.v
module counter_4b(count,clk,reset);
output [3:0] count;
input clk,reset;
reg [3:0] count;
function [3:0] increment;
input [3:0] val;
reg [1:0] i;
reg carry;
begin
increment=val;
ca
www.eeworm.com/read/298817/7933267
c 大加数.c
/*这是一个大正数加法问题TC中应该完全可以运行。 */
#include
#include
#define HUN 10000
typedef struct node
{
int data;
struct node *next;
}NODE;
NODE *insert(NODE *u,int num) /*声
www.eeworm.com/read/298817/7933274
c 大整数.c
#include
#include
#define HUN 10000
typedef struct node
{
int data;
struct node *next;
}NODE; //定义链表结构
NODE *insert(u,num)//在u节点之后插入一个新的NODE,其值为NUM
NODE *u;
int num;
www.eeworm.com/read/397984/8011772
asm test1.asm
;***USER EQUATES***
LED1 EQU 01
LED2 EQU 02
LED3 EQU 03
LED4 EQU 04
LED5 EQU 05
LED6 EQU 06
;
; Base Page of r/w memory (DATA) at 00
DATA EQU 00
; Base of where IO devices (IO) beg
www.eeworm.com/read/247320/12666337
cpp dsa.cpp
// dsa.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#ifndef CRYPTOPP_IMPORTS
#include "dsa.h"
#include "nbtheory.h"
NAMESPACE_BEGIN(CryptoPP)
size_t DSACon
www.eeworm.com/read/145002/12757425
h pic18.h
#ifndef _PIC18_H
#define _PIC18_H
#if defined(_18C242) || defined(_18C252) || defined(_18C442) || defined(_18C452)
#include
#endif
#if defined(_18C658) || defined(_18C858) || de
www.eeworm.com/read/332124/12777290
c 大加数.c
/*这是一个大正数加法问题TC中应该完全可以运行。 */
#include
#include
#define HUN 10000
typedef struct node
{
int data;
struct node *next;
}NODE;
NODE *insert(NODE *u,int num) /*声
www.eeworm.com/read/332124/12777301
c 大整数.c
#include
#include
#define HUN 10000
typedef struct node
{
int data;
struct node *next;
}NODE; //定义链表结构
NODE *insert(u,num)//在u节点之后插入一个新的NODE,其值为NUM
NODE *u;
int num;
www.eeworm.com/read/143994/12824960
c mint.c
// MInt.cpp: implementation of the MInt class.
#include "MInt.h"
#define HalfWord unsigned short
#define HALF_WORD_BITS 16
#define BITS_PER_BYTE 8
#define CMP_WORD_SIZE (sizeof (D