代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/303278/13819218

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/303278/13819242

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/303278/13819250

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/303278/13819259

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/303026/13823474

cpp spritecollection.cpp

/* * Copyright (C) 2002 Robert Ernst * * This file may be distributed and/or modified under the terms of the * GNU General Public License version 2 as publish
www.eeworm.com/read/302902/13824899

asm aexp15-4.asm

;*************************************************** ; Aexp15-4.asm 步进电机正/反点动控制程序 * ; 运行步骤:1.每按下一次开关SW1,步进电机顺时针走一步; * ; 每按下一次开关SW2,步进电机反时针走一步* ; 2.按下任意键,退出
www.eeworm.com/read/302229/13838890

asm delay_us.asm

;***********************************************************************************************; ;* TMS320F2810 Assembly Language File *; ;*
www.eeworm.com/read/302145/13841583

c hello.c

#include #include #pragma interrupt(Timer=2) void Timer(void) { ioport1++; } void main () { int i, j; int arr[10]; float r; loop: j = 0;
www.eeworm.com/read/301888/13846807

m c6_pllsim.m

% File: pll2sin.m % Software given here is to accompany the textbook: W.H. Tranter, % K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of % Communication Systems Simulation with Wirele
www.eeworm.com/read/301756/13848971

txt 存储过程2.txt

create procedure zdel is v_jsl base.jsl%type; cursor cur_1 is select jsl from base where jsl=0; begin open cur_1; loop fetch cur_1 into v_jsl; exit when cur_1%NOTFOUND; delete from bas