代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/200854/15421814
v clock.v
module clock(clk,clk_1k,mode,change,turn,alert,hour,min,sec,
LD_alert,LD_hour,LD_min);
input clk,clk_1k,mode,change,turn;
output alert,LD_alert,LD_hour,LD_min;
output[7:0] hour,min,sec;
reg[7:0]
www.eeworm.com/read/200690/15427569
asm daima35.asm
TEMP EQU 20H
DATA EQU 22H
ORG 0000H
LJMP START
ORG 0100H
START: MOV SP,#0060H
MOV SCON,#00H ;设置串行口方式
CLR TI
LOOP: LCALL OUTPORT
SJMP LOOP
OUTPORT:PUSHF
CLR A
MOV DPTR,#0000H
www.eeworm.com/read/200609/15428691
vhd 15_mvl7_functions.vhd
--***************************************************************************
-- VHDL BIT_VECTOR Operations for MVL7 type
--
www.eeworm.com/read/100036/15460502
c rc4_enc.c
/* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
*
* Always modify rc4_enc.org since rc4_enc.c is automatically generated from
* it during SSLeay configuration.
* W
www.eeworm.com/read/100036/15460504
org rc4_enc.c.org
/* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
*
* Always modify rc4_enc.org since rc4_enc.c is automatically generated from
* it during SSLeay configuration.
* WARNIN
www.eeworm.com/read/113179/15467545
c ex.c
//#pragma SRC
void test();
main()
{
test();
#pragma ASM
jmp $;
#pragma ENDASM
while(1);
}
void test()
{
while(1);
}
// jmp $; endless loop
//#pragma enasm
//}
//
www.eeworm.com/read/113072/15470863
txt 570.txt
Do...Loop 语句
Microsoft® Visual Basic® Scripting Edition
Do...Loop 语句
语言参考
版本 1
请参阅
描述
当条件为 True 时或条件变为 True 之前重复执行某语句块。
语法
Do [{While | Until} condition]
[statements]
[Exit Do]
www.eeworm.com/read/113072/15470987
txt 571.txt
Do...Loop 语句
Microsoft® Visual Basic® Scripting Edition
Do...Loop 语句
请参阅
语言参考
Exit 语句
For...Next 语句
While...Wend 语句
www.eeworm.com/read/113072/15471145
txt 602.txt
While...Wend 语句
Microsoft® Visual Basic® Scripting Edition
While...Wend 语句
请参阅
语言参考
Do...Loop 语句
www.eeworm.com/read/112766/15477373
c busywait.c
/*
* BusyWait.c
*
* Sample code for Multithreading Applications in Win32
* This is from Chapter 3, Listing 3-1
*
* Demonstrate the effect on performance
* of using a busy loop. First cal