代码搜索:loop2
找到约 704 项符合「loop2」的源代码
代码结果 704
www.eeworm.com/read/4755/39590
txt 4.2 ascii码到十六进制数的转换.txt
ASCTOHEX:
MOV R0,#41H
CLR C
MOV A,R0
CJNE A,#30H,LOOP0
LOOP0:
JC C,LOOP4
CJNE A,#47H,LOOP2
LOOP2:
JNC C,LOOP4
CLR C
MOV A,R1
SUBB A,#30H
MOV R0,A
SUBB A,#0AH
JC
www.eeworm.com/read/7196/107427
txt 4.2 ascii码到十六进制数的转换.txt
ASCTOHEX:
MOV R0,#41H
CLR C
MOV A,R0
CJNE A,#30H,LOOP0
LOOP0:
JC C,LOOP4
CJNE A,#47H,LOOP2
LOOP2:
JNC C,LOOP4
CLR C
MOV A,R1
SUBB A,#30H
MOV R0,A
SUBB A,#0AH
JC
www.eeworm.com/read/14692/402339
txt 4.2 ascii码到十六进制数的转换.txt
ASCTOHEX:
MOV R0,#41H
CLR C
MOV A,R0
CJNE A,#30H,LOOP0
LOOP0:
JC C,LOOP4
CJNE A,#47H,LOOP2
LOOP2:
JNC C,LOOP4
CLR C
MOV A,R1
SUBB A,#30H
MOV R0,A
SUBB A,#0AH
JC
www.eeworm.com/read/25789/949753
txt 4.2 ascii码到十六进制数的转换.txt
ASCTOHEX:
MOV R0,#41H
CLR C
MOV A,R0
CJNE A,#30H,LOOP0
LOOP0:
JC C,LOOP4
CJNE A,#47H,LOOP2
LOOP2:
JNC C,LOOP4
CLR C
MOV A,R1
SUBB A,#30H
MOV R0,A
SUBB A,#0AH
JC
www.eeworm.com/read/28208/994739
txt 双工.txt
ORG 0000H
MOV SP,#70H
MOV SCON,#90H
LOOP1:MOV A,P1
MOV SBUF,A
LOOP2:JNB TI,LOOP3
NEXT: CLR TI
LOOP3:JNB RI,LOOP2
CLR RI
MOV A,SBUF
ORL A,#0FH
MOV P1,A
JB TI,NEXT
SJMP LOOP1
E
www.eeworm.com/read/201899/15393018
asm sy5-bios.asm
.MODEL SMALL
.STACK
.DATA
ENTER1 DB 13,10,'$'
.CODE
.STARTUP
MOV AX,0
MOV DX,0
MOV CX,16
LOOP2: PUSH
www.eeworm.com/read/391040/8426166
asm pwm.asm
ORG 0
LOOP: MOV P1,#0FFH
MOV A,P1
JNZ LOOP1
CLR P3.0
SJMP LOOP
LOOP1: CJNE A,#0FFH,LOOP2
SETB P3.0
SJMP LOOP
LOOP2: MOV R0,A
MOV A,#0FFH
CLR C
SUBB A,R0
MOV R1,A
SETB P3.0
L