代码搜索:loop2
找到约 704 项符合「loop2」的源代码
代码结果 704
www.eeworm.com/read/464391/7164126
s startup.s
; 启动文件,初始化C程序的运行环境,然后进入C程序代码。
IMPORT |Image$$RO$$Limit|
IMPORT |Image$$RW$$Base|
IMPORT |Image$$ZI$$Base|
IMPORT |Image$$ZI$$Limit|
IMPORT main ; 声明C程序中的Main()函数
C
www.eeworm.com/read/460865/7239068
s main.s
ORG 0000H;
ljmp MAIN;
ORG 0100H;
delay:
mov r7,0ffh
mov r6,0ffh
loop1:
djnz r7,loop2
ret
loop2:
djnz r6,loop2
sjmp loop1
main:
mov sp,#60h
mov r0,#0feh
www.eeworm.com/read/459723/7265918
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/459723/7266102
txt 3.4.3多字节除法.txt
MBCDD:
MOV R0,#11H
MOV R7,#08H
LOOP1:
MOV @R0,#00H
INC R0
DJNZ R7,LOOP1
MOV R0,#25H
MOV R7,#04H
LOOP2:
MOV @R0,#00H
INC R0
DJNZ LOOP2
MOV R3,#10H
LOOP0:
MOV R4,#04H
LOO
www.eeworm.com/read/458318/7299230
asm 计数器.asm
/*******************************************************************************
* 标题: 蓝海微芯LJD-SY-5100S单片机开发系统演示程序
* 文件: 计数器.asm
www.eeworm.com/read/445852/7589327
asm yanshi1.asm
;晶振11.0592 hz,延时1s
MOV 70H,200
LOOP2:MOV 71H,#100
LOOP3:MOV 72H,#21
LOOP4:DJNZ 72H,LOOP4
DJNZ 71H,LOOP3
NOP
NOP
NOP
NOP
www.eeworm.com/read/299064/7894512
unixlogin
# Generic UNIX login script.
# Can be used to automatically login to almost every UNIX box.
#
# Some variables.
set a 0
set b a
print Trying to Login..
# Skip initial 'send ""', it seems to matte
www.eeworm.com/read/330336/12900649
asm yanshi1.asm
;晶振11.0592 hz,延时1s
MOV 70H,200
LOOP2:MOV 71H,#100
LOOP3:MOV 72H,#21
LOOP4:DJNZ 72H,LOOP4
DJNZ 71H,LOOP3
NOP
NOP
NOP
NOP
www.eeworm.com/read/141547/13000867
asm text1.asm
ORG 0X0000
LJMP START
ORG 0X0030
START: MOV P1, #0X55
MOV R2, #0
MAIN: INC R2
MOV P1, R2
ACALL DELAY
AJMP MAIN
DELAY: MOV R3, #5
LOOP1: MOV R4, #200
LOOP2: MOV R5, #200
www.eeworm.com/read/328794/13001908
asm 1234.asm
dseg segment
n equ 20 ; 数组中数的个数
a dw n dup(?)
dseg ends
; 定义代码段
cseg segment
main proc far
assume cs:cseg, ds:dseg
star