代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/228498/14381231
asm 8279qqs.asm
ORG 0000H
AJMP MAIN
ORG 0003H
AJMP INSER
MAIN:
mov sp,#60h
start: MOV DPTR,#0f800H //初始化
INC DPTR
MOV A, #00H
MOVX @DPTR,
www.eeworm.com/read/228498/14381234
txt 8279.txt
ORG 0000H
AJMP MAIN
ORG 0003H
AJMP INSER
MAIN:
MOV DPTR,#7000H //初始化
INC DPTR
MOV A, #00H
MOVX @DPTR,A
MOV A , #0D1H
www.eeworm.com/read/228498/14381236
asm 8279qq.asm
ORG 0000H
AJMP MAIN
ORG 0003H
AJMP INSER
MAIN:
MOV DPTR,#7000H //初始化
INC DPTR
MOV A, #00H
MOVX @DPTR,A
MOV A , #0D1H
www.eeworm.com/read/228377/14387813
asm asm.asm
ORG 0000H
LJMP MAIN
MAIN:
CLR p3.2 ;BUSY端口先置0
CLR P3.0 ;Dclk端口先置0
MOV A,#0E7H
MOV R1,#8H
LOOP1: ;循环送入ADS7841控制字,选定为11100111
RLC A
www.eeworm.com/read/126902/14395997
java backgroundplay.java
import java.applet.Applet;
import java.applet.AudioClip;
public class BackgroundPlay extends Applet {
AudioClip clip;
String soundURL;
boolean loop;
public void init() {
www.eeworm.com/read/228167/14399153
cpp 2_10.cpp
#include
void main()
{
enum color{red,yellow,blue,white,black};
enum color pri;
int n,loop,i,j,k;
char c;
n=0;
for(i=red;i
www.eeworm.com/read/126747/14405440
asm esoua.asm
LIST P=PIC16C73
#include
;iButton 端口
OW_PORT equ h'0005'
;状态标志字
Flag equ h'0020'
;状态标志位
sendbit equ h'0001'
result equ h'0002'
scl equ h'0003'
sda equ h'0
www.eeworm.com/read/126510/14418292
c 2.c
# include
main( )
{ enum fruit {apple, orange , banana , pineapple , pear };
enum fruit x, y, z, pri ;
int n, loop ;
www.eeworm.com/read/227639/14418653
c 简单数据库.c
#include
#include
int main(void)
{
char label[20];
char name[20];
int entries = 0;
int loop, age;
double salary;
struct Entry_struct
{
cha
www.eeworm.com/read/126327/14428366
v clock2.v
//多功能数字钟
/*信号定义
clk:时钟信号,频率为4Hz;
clk_1k:产生闹铃声、报时音的时钟信号,频率为1024Hz;
mode:功能控制信号;为0:计时功能;
为1:闹铃功能;
为2:手动校对功能;
turn:在手动校对时,选择是调整小时(1),还是分钟(0),若长时间按
住该键,可使秒信号清零,用于精确调时;
change:手动调整时, ...