代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/359826/10122721

asm 895152.asm

;动态扫描显示895152,8个灯跑动。 ;*************************************************************************** ;* sxj1974@163.com (51c51 test web) www.8951.com * ;* Create by :石学军 www.51c51
www.eeworm.com/read/359826/10122751

asm 232shuzi.asm

;232通信程序,4800速率,12m晶体,注意该程序适应目前我站各个版本, ;使用配套光盘的工具软件、串口调试助手,设置波特率4800, 连接232电缆到串口, ;*************************************************************************** ;* sxj1974@163.com (51c51 test
www.eeworm.com/read/359259/10159164

asm initad50.asm

.include "reg.h" .def _init_AD50 .mmregs temp .usect "temp",1 NOP_REQ .set 0000h ; Pseudo reg0 val REG1_VAL .set 0104h ; INP & INM for DAC, (15+1)bit mode DAC READ_REG1
www.eeworm.com/read/163257/10168325

asm jtx.asm

ORG 0000H AJMP START ORG 0023H AJMP TO_INTSE ORG 0030H START:MOV DPTR,#0FF82H MOV A,#0D1H MOVX @DPTR,A DEN:MOVX A,@DPTR JB ACC.7,DEN MOV A,#00H MOVX @DPTR,A MOV A,#2A
www.eeworm.com/read/163246/10168920

m disprog.m

function disprog(i,N,steps); %DISPROG Display progression of a loop. % DISPROG(i,N,steps) displays the progression of a loop. % % I : loop variable % N : final value of i % STEPS : number of d
www.eeworm.com/read/163189/10171897

txt 15.3.3算术均值滤波.txt

FILTER4: MOV R6,#40H MOV R2,#00H MOV R3,#00H MOV A,COUNT PUSH ACC MOV R0,#DATA LOOP: MOV 36H,R6 MOV 37H,R2 MOV 38H,R3 MOV A,@R0 MOV R3,A INC R0 MOV R1,#MED1 CLR 3AH
www.eeworm.com/read/163189/10172071

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/163189/10172118

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/163189/10172134

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/163189/10172150

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