代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/475860/6766400
asm yjbg.asm
org 0000h
LOOP:
SETB P2.6 ;使P2.6输出高,控制PNP三极管截止,液晶屏幕的背光关闭
LCALL DELAY ;调用延时子程序DELAY
LCALL DELAY ;调用延时子程序DELA
LCALL DELAY ;调用延时子程序DELA
CLR P2.6 ;使P2.6输出低,控制PNP三极管饱和,液晶屏幕的背光打开
LCALL
www.eeworm.com/read/475860/6767141
asm 123.asm
;让点亮后的LED发光管可以闪动
LOOP:
CLR P3.4;
AJMP LOOP;通过AJMP执行LOOP,从最开始循环执行,无限循环下去
DELAY: MOV R7,#250
D1: MOV R6,#250
D2: DJNZ R6,D2
DJNZ R7,D1
RET
END
www.eeworm.com/read/475860/6767650
asm liu.asm
loop:
mov p0,#0f7h
call delay
mov p0,#0fbh
call delay
mov p0,#0fdh
call delay
mov p0,#0feh
call delay
;----------------------------------------------
mov p0,#0feh
call delay
www.eeworm.com/read/475897/6768453
m chap9_5i.m
%Three Loop of Flight Simulator Servo System with Direct Current Motor
clear all;
close all;
%(1)Current loop
L=0.001; %L
www.eeworm.com/read/475902/6768949
asm wonoffp4.asm
;参考程序A : WONOFFP4.ASM 8个LED灯依次循环点亮.
$include (c8051f020.inc)
ORG 0000H
LJMP MAIN
ORG 0100H
MAIN: MOV SP,#40H
MOV WDTCN,#0DEH ;禁止看门狗定时器
MOV WDTCN,
www.eeworm.com/read/475902/6768950
#2 wonoffp4.#2
;参考程序A : WONOFFP4.ASM 8个LED灯依次循环点亮.
$include (c8051f020.inc)
ORG 0000H
LJMP MAIN
ORG 0100H
MAIN: MOV SP,#40H
MOV WDTCN,#0DEH ;禁止看门狗定时器
MOV WDTCN,
www.eeworm.com/read/475902/6768954
#1 wonoffp4.#1
;参考程序A : WONOFFP4.ASM 8个LED灯依次循环点亮.
$include (c8051f020.inc)
ORG 0000H
LJMP MAIN
ORG 0100H
MAIN: MOV SP,#40H
MOV WDTCN,#0DEH ;禁止看门狗定时器
MOV WDTCN,
www.eeworm.com/read/475357/6778938
txt 最小系统汇编程序.txt
;**************************************
;AT89S51单片机最小系统
;======================================
;开机初始化
;======================================
ORG 0000H
START:
NOP
www.eeworm.com/read/230048/6789137
java breakandcontinue.java
//: c03:BreakAndContinue.java
// Demonstrates break and continue keywords.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
im
www.eeworm.com/read/230048/6789161
java labeledwhile.java
//: c03:LabeledWhile.java
// Java's "labeled while" loop.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceeck