代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/155865/11841870
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/155865/11842136
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/155865/11842194
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/155865/11842218
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/155865/11842240
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/344921/11852583
asm 利用中断方式实现灯的闪烁.asm
ORG 0000H
AJMP START
ORG 000BH ;定时器0的中断向量地址
AJMP TIME0 ;跳转到真正的定时器程序处
ORG 30H
START: MOV P1,#0FFH ;关所有灯
MOV TMOD,#00000001B ;定时/计数器0工作于方式1
MOV TH0,#15H
M
www.eeworm.com/read/155650/11856871
txt readme.txt
This is a tiny package of RedHat Linux 4.2:
vmlinuz Linux Kernel 2.0.30(support NE200, 3Com 3c5x9, 3Com 3c59x
network card)
rootfs.gz Compressed ext2 r
www.eeworm.com/read/258463/11861486
c sys_lpc2200.c
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
www.eeworm.com/read/344740/11862955
bas pc遥控器.bas
Config Rc5 = Pinb.1 '配置端口B的1号IO线为RC5红外遥控信号输入脚
Ddrb = &HFD '配置端口B的1号IO线为输入,其余为输出
Portb = &HFC
www.eeworm.com/read/155540/11864264
cs gameloophandler.cs
using System;
using System.Collections;
using System.Windows.Forms;
namespace DDGameHelper
{
#region GameLoop 事件参数类定义
///
/// GameLoop 相关事件参数
///
public class Even