代码搜索:Digit
找到约 4,689 项符合「Digit」的源代码
代码结果 4,689
www.eeworm.com/read/238098/13907451
asm getdig01.asm
;put into the public domain by Russell Nelson, nelson@crynwr.com
public get_digit
get_digit:
;enter with al = character
;return nc, al=digit, or cy if not a digit.
cmp al,'0' ;decimal digit
www.eeworm.com/read/238098/13907557
asm getdig00.asm
;put into the public domain by Russell Nelson, nelson@crynwr.com
public get_digit
get_digit:
;enter with al = character
;return nc, al=digit, or cy if not a digit.
cmp al,'0' ;decimal digit
www.eeworm.com/read/238098/13907645
asm getdig.asm
;put into the public domain by Russell Nelson, nelson@crynwr.com
public get_digit
get_digit:
;enter with al = character
;return nc, al=digit, or cy if not a digit.
cmp al,'0' ;decimal digit
www.eeworm.com/read/202201/15389719
cpp f0602.cpp
//=====================================
// f0602.cpp
// 将小函数"融化"在调用处
//=====================================
#include
using namespace std;
//-------------------------------------
int
www.eeworm.com/read/374821/9383252
lst main.lst
C51 COMPILER V8.08 MAIN 06/28/2008 15:24:32 PAGE 1
C51 COMPILER V8.08, COMPILATION OF MODULE MAIN
OBJECT MODULE PLACED IN ma
www.eeworm.com/read/374821/9383297
c main.c
#include "CONFIG.H"
sbit Bell_Out = P1 ^ 5;//闹钟管脚输出
sbit Mcs = P3 ^ 5; //
sbit Scs = P3 ^ 4; //
sbit Add_Key = P1 ^ 0;//加1键
sbit Dec_Key = P1 ^ 1;//减1键
sbit OK_Key = P1 ^ 2;//确定键
www.eeworm.com/read/350482/10741023
c bn_mp_mul_2.c
#include
#ifdef BN_MP_MUL_2_C
/* LibTomMath, multiple-precision integer library -- Tom St Denis
*
* LibTomMath is a library that provides multiple-precision
* integer arithmetic as well
www.eeworm.com/read/234365/14115237
c base64.c
#include
static const char base64digits[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
#define BAD -1
static const char base64val[] = {
BAD,BAD
www.eeworm.com/read/112009/15495719
c mpsubtract.c
/* mpSubtract.c */
/******************* SHORT COPYRIGHT NOTICE*************************
This source code is part of the BigDigits multiple-precision
arithmetic library Version 1.0 originally writ