代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/342198/3235893
opt while.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.a*; *.src)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt)
pExt (*.plm)
CppX (*.cpp)
DaveTm { 0,0,0,0,0,0,0,0 }
www.eeworm.com/read/342198/3235894
c while.c
#include
void Delayx1ms(Byte count);
void Ifdemo3(void){Byte FgpulseShort,FgpulseLong,Dutycount;
while(P1_0==0) //不为0跳过
{Delayx1ms(1); //当检测到P1_0为低电平时计数直到P1_0变高,
if(P1_0==
www.eeworm.com/read/340665/3266487
out while.out
! donkey
donkey
!bar .ASSIGNA 0
! .AWHILE \&bar LT 5
! HI BAR IS \&bar
!foo .ASSIGNA 0
! .AWHILE \&foo LT 2
! HI BEFORE
! .AREPEAT 2
! HI MEDIUM \&foo \&bar
! .AENDR
! HI AFTER
!foo .ASSIGNA \&foo +
www.eeworm.com/read/340665/3266518
asm while.asm
donkey
bar .ASSIGNA 0
.AWHILE \&bar LT 5
HI BAR IS \&bar
foo .ASSIGNA 0
.AWHILE \&foo LT 2
HI BEFORE
.AREPEAT 2
HI MEDIUM \&foo \&bar
.AENDR
HI AFTER
foo .ASSIGNA \&foo + 1
.AENDW
bar .ASS
www.eeworm.com/read/340665/3266917
s while.s
; Test MRI structured while pseudo-op.
xdef foo
foo
while do
endw
clr d1
while d1 #10 do
add #1,d1
endw
nop
nop
www.eeworm.com/read/340665/3266929
d while.d
#objdump: -d --prefix-addresses
#name: MRI structured while
#as: -M
# Test MRI structure while pseudo-op.
.*: file format .*
Disassembly of section .text:
0+000 bccs 0+004
0
www.eeworm.com/read/339501/3299454
opt while.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.a*; *.src)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt)
pExt (*.plm)
CppX (*.cpp)
DaveTm { 0,0,0,0,0,0,0,0 }
www.eeworm.com/read/339501/3299455
c while.c
#include
void Delayx1ms(Byte count);
void Ifdemo3(void){Byte FgpulseShort,FgpulseLong,Dutycount;
while(P1_0==0) //不为0跳过
{Delayx1ms(1); //当检测到P1_0为低电平时计数直到P1_0变高,
if(P1_0==
www.eeworm.com/read/338159/3320022
cpp while.cpp
/****************************/
/* FastScript v1.0 */
/*'while' operator demo */
/****************************/
int i, j;
void OK(int n)
{
ShowMessage(n);
}
{
j = 1;
www.eeworm.com/read/338159/3320041
cpp while.cpp
/****************************/
/* FastScript v1.0 */
/*'while' operator demo */
/****************************/
{
int j = 1;
int i = 0;
while (i < 10)
{
j++;
In