代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/150071/12318172
cpp splint.cpp
void splint(double xa[], double ya[], double y2a[], int n, double& x, double& y)
{
int klo,khi,k;
double h,a,b,aaa,bbb;
klo = 1;
khi = n;
loop: if (khi - klo > 1 )
{
k = (khi +
www.eeworm.com/read/149509/12370013
lst text8.lst
A51 MACRO ASSEMBLER TEXT8 02/19/2006 11:54:22 PAGE 1
MACRO ASSEMBLER A51 V6.12
OBJECT MODULE PLACED IN .\Text8.OBJ
ASSEMBLER
www.eeworm.com/read/149234/12393288
asm exec82.asm
Counter EQU 59H ;计数器,显示程序通过它得知现正显示哪个数码管
FIRST EQU P2.7 ;第一位数码管的位控制
SECOND EQU P2.6 ;第二位数码管的位控制
DISPBUFF EQU 5AH ;显示缓冲区为5AH和5BH
ORG 0000H
AJMP START
ORG 000BH ;定时器T0的入口
AJMP DISP ;显示程序
www.eeworm.com/read/250606/12397255
s54 echo_asm.s54
;
; Copyright 2001 by Texas Instruments Incorporated.
; All rights reserved. Property of Texas Instruments Incorporated.
; Restricted rights to use, duplicate or disclose this code are
; granted t
www.eeworm.com/read/148971/12411219
s memmove.s
/* Optimized version of the standard memmove() function.
This file is part of the GNU C Library.
Copyright (C) 2000, 2001 Free Software Foundation, Inc.
Contributed by Dan Pop
www.eeworm.com/read/148707/12436661
cpp 10v.cpp
// GradeStudents () Using the `answers' test key, grade
// each student quiz in file STUDENTFILE. Print score.
// ASSUMPTION: file STUDENTFILE exists and contains
// one record per student.
//
www.eeworm.com/read/148707/12437081
cpp 10i.cpp
// gradtest.cpp Grade student quiz answers in file `students.txt' against
// the key in disk file `key.txt'. Report each student's score and a class
// summary of the number correct for each q
www.eeworm.com/read/148511/12462154
txt 11.2 12位ad转换器ad578ad678ad1678接口.txt
START:
MOV DPTR,#9000H
MOVX DPTR,A
LOOP:
MOVX A,@DPTR
JB ACC.7,LOOP
MOVX A,@DPTR
MOV 20H,A
MOV DPTR,#6000H
MOVX A,@DPTR
MOV 21H,A
RET
www.eeworm.com/read/148511/12462368
txt 1.2.3 双字节有符号数减法.txt
SDSUB:
MOV R4,#20H
MOV R5,#80H
MOV R6,#0FDH
MOV R7,#71H
MOV 20H,R4
MOV 21H,R5
ACALL COMP
MOV R4,20H
MOV R5,21H
MOV 20H,R6
MOV 21H,R7
ACALL COMP
CLR C
M
www.eeworm.com/read/148511/12462378
txt 1.2.1 双字节无符号数减法.txt
DSUB:
MOV R4,#20H
MOV R5,#80H
MOV R6,#0ADH
MOV R7,#71H
MOV 20H,R4
MOV 21H,R5
CLR C
MOV A,R4
SUBB A,20H
MOV 20H,A
MOV A,R5
SUBB A,21H
MOV 21H,A
JB D2,LOOP