代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/424315/10464144
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/424315/10464538
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/424315/10464635
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/424315/10464664
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/424315/10464689
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/353077/10472738
asm 8951vs8951.asm
org 0000h
start:orl pcon,#80h
mov scon,#10010000b
mov p2,#0ffh
loop: mov a,p2
mov sbuf,a
wait: jbc ri,received
jbc ti,loop
jmp wait
received:mov p0,sbuf
clr
www.eeworm.com/read/279052/10474000
s convert.s
# convert.s - A function to convert lower case letters to upper case
.section .text
.type convert, @function
.globl convert
convert:
pushl %ebp
movl %esp, %ebp
pushl %esi
pushl %edi
mo
www.eeworm.com/read/279052/10474011
s readtest2.s
# readtest2.s - A more complicated example of reading data from a file
.section .bss
.lcomm buffer, 10
.lcomm filehandle, 4
.section .text
.globl _start
_start:
nop
movl %esp, %ebp
movl
www.eeworm.com/read/279052/10474278
s paramtest2.s
# paramtest2.s - Listing system environment variables
.section .data
output:
.asciz "%s\n"
.section .text
.globl _start
_start:
movl %esp, %ebp
addl $12, %ebp
loop1:
cmpl $0, (%ebp)
je
www.eeworm.com/read/279052/10474297
s convert.s
# convert.s - Converting lower to upper case
.section .data
string1:
.asciz "This is a TEST, of the conversion program!\n"
length:
.int 43
.section .text
.globl _start
_start:
nop
leal str