代码搜索:loop2

找到约 704 项符合「loop2」的源代码

代码结果 704
www.eeworm.com/read/193177/8249057

txt 6.3.2选择排序.txt

DATA EQU 20H N EQU 8 SSSRT: MOV DPTR,#LIST MOV R0,#DATS MOV R2,#N CPY: CLR A MOVC A,@A+DPTR MOV @R0,A INC R0 INC DPTR DJNZ R2,CPY LCALL SELSORT LIST: DB 53H,87H,12H
www.eeworm.com/read/193177/8249126

txt 6.3.1插入排序.txt

DATA EQU 20H N EQU 8 ISRT: MOV DPTR,#LIST MOV R0,#DATA MOV R2,#N CPY: CLR A MOVC A,@A+DPTR MOV @R0,A INC R0 INC DPTR DJNZ R2,CPY LCALL INSSORT STOP: LJMP STOP
www.eeworm.com/read/392625/8332171

asm exp1.asm

ORG 0000h LJMP MAIN ORG 0003h /*外部中断0入口地址*/ LJMP INTE0 /*中断入口转移*/ ORG 000Bh /*定时器0中断入口地址*/ LJMP TIE0 /*中断入口转移*/ MAIN:MOV DPTR,#0E100H MOV A
www.eeworm.com/read/247689/12627474

txt 阶乘.txt

N EQU 149 ;学号 AREA Example7,CODE,READONLY ;声明代码段Example4 ENTRY ;标识程序入口 CODE32 ;声明32位ARM指令 STAR
www.eeworm.com/read/146455/12646921

txt 6.3.2选择排序.txt

DATA EQU 20H N EQU 8 SSSRT: MOV DPTR,#LIST MOV R0,#DATS MOV R2,#N CPY: CLR A MOVC A,@A+DPTR MOV @R0,A INC R0 INC DPTR DJNZ R2,CPY LCALL SELSORT LIST: DB 53H,87H,12H
www.eeworm.com/read/146455/12646974

txt 6.3.1插入排序.txt

DATA EQU 20H N EQU 8 ISRT: MOV DPTR,#LIST MOV R0,#DATA MOV R2,#N CPY: CLR A MOVC A,@A+DPTR MOV @R0,A INC R0 INC DPTR DJNZ R2,CPY LCALL INSSORT STOP: LJMP STOP
www.eeworm.com/read/391298/8410932

sdi count0-0.sdi

,,, ORG 00H 0000,02 00 30,, JMP MAIN ,,, ORG 30H 0030,7A 00,MAIN,MAIN: MOV R2,#00H ; 0032,75 89 04,START,START: MOV TMOD,#00000100B ;设置计数器0工作在MODE0 0035,75
www.eeworm.com/read/363482/9949335

sdi count0-0.sdi

,,, ORG 00H 0000,02 00 30,, JMP MAIN ,,, ORG 30H 0030,7A 00,MAIN,MAIN: MOV R2,#00H ; 0032,75 89 04,START,START: MOV TMOD,#00000100B ;设置计数器0工作在MODE0 0035,75
www.eeworm.com/read/360885/10073420

c link_dynamic.c

/* * link_dynamic.c * * extracts lists of edge pixels from an image * automatically determines a threshold value to reject poor edge lists * * two threshold methods: * 1/ linear decision ru
www.eeworm.com/read/353795/10417725

asm 加减亮度实验.asm

;P3.2控制LED的亮度。成功拉。哈哈哈 =====3.27 ORG 0 JMP START ORG 30H START: MOV 77H,#10 MAIN: ; jnb p3.2,qwe MOV A,#0 LCALL LOOP