代码搜索:Loop

找到约 10,000 项符合「Loop」的源代码

代码结果 10,000
www.eeworm.com/read/459723/7266059

txt 6.1.3双字节无符号数据块排序.txt

COUNT: EQU 03H TABLE: DEFB 01H,20H,50H,3AH,2BH,E5H DSRT: MOV R6,#00H MOV R7,#COVNT DEC R1 MOV R0,#TAB MOV R1,#23H LOOP: MOV 2AH,@R0 INC R0 MOV 2BH,@R0 MOV 2CH,@R1 INC R
www.eeworm.com/read/459723/7266083

txt 10.1.3 8279键盘接口.txt

START: MOV DPTR,# 7FFFH MOV A,#0Dl H MOVX DPTR,A WAIT: MOVX A,@DPTR JB ACC. 7,WAIT MOV A,#2AH MOVX DPTR,A MOV A,#00H MOVX DPTR,A MOV R0,#30H MOV
www.eeworm.com/read/459723/7266091

txt 10.1.5键盘扫描.txt

PORT1 EQU P0 PORT2 EQU P2 ORG 0H JMP MAIN ORG 30H MAIN: MOV SP,#5FH MOV PORT2,#0FFH LOOP: MOV R0,#4 MOV R1,#11101111B MOV R2,#0FFH NLINE: MOV A,R1 MO
www.eeworm.com/read/459723/7266100

txt 3.3.2双字节乘法.txt

DBCDM: MOV R2,#2 ADD A,R0 MOV R0,A MOV R3,#0 LOOP: DEC R0 MOV A,@R0 SWAP A MOV @R0,A MOV A,R3 XCHD A,@R0 MOV R3,A DJNZ R2,LOOP RET  
www.eeworm.com/read/459616/7270610

cpp maddct1.cpp

// step count for matrix addition #include #include "make2db.h" int count = 0; template void Add( T **a, T **b, T **c, int rows, int cols) {// Add matrices a and b to obtain m
www.eeworm.com/read/459415/7275765

asm yaho1.asm

DATA SEGMENT DATA ENDS CODE SEGMENT ASSUME CS:CODE,DS:DATA START: MOV AX,DATA MOV DS,AX XOR CX,CX MOV CL,5 MOV BX,8290 MOV AX,BX MOV BX,10 LOP1:XOR DX,DX DIV BX O
www.eeworm.com/read/458322/7299025

asm 24c02.asm

;******************************************************************************** ;* 标题:北京启东微芯LJD-SY-5100单片机实验系统24c02读写程序 * ;* 文件:TLC549.asm
www.eeworm.com/read/458153/7303378

asm flashled2.asm

;p1口8个跑马灯的另外一个程序。 ;************************************************************************** ;* Date : 2004.4.20 * ;* Support Mb:0735-2197559
www.eeworm.com/read/457754/7318055

asm 3-6.asm

.mmregs SWCR .set 002BH ;定义SWCR寄存器 OUTDATA1 .set 0000H ;定义DA输出数值1 OUTDATA2 .set 07FFH ;定义DA输出数值2 K_IPTR .set 000111000B
www.eeworm.com/read/457222/7331538

asm dft_128.asm

; ; DFT_128 - compute 128 points DFT ; ; Entry T0: AR0: pointer to complex input sample buffer ; AR1: pointer to complex output sample buffer ; Return: None ; .def _d