代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/349633/10810428
fig part2_2.fig
www.eeworm.com/read/420191/10811406
m l2_2.m
www.eeworm.com/read/405345/10817302
uv2 tem2.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1,
Options 1,0,0 // Target 'Tar
www.eeworm.com/read/419834/10834496
rc2 demo2.rc2
//
// DEMO2.RC2 - resources Microsoft eMbedded Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft eMbedded Visual C++
#endif //APSTUDIO_
www.eeworm.com/read/419727/10840454
lst lesson 2_2.lst
C51 COMPILER V8.05a LESSON_2_2 02/02/2009 00:41:40 PAGE 1
C51 COMPILER V8.05a, COMPILATION OF MODULE LESSON_2_2
OBJECT MODULE PLACE
www.eeworm.com/read/419727/10840458
lnp lesson 2_2.lnp
"STARTUP.obj",
"lesson 2_2.obj"
TO "lesson 2_2"
RAMSIZE(256)
www.eeworm.com/read/419727/10840465
pwi lesson 2_2.pwi
www.eeworm.com/read/419727/10840479
opt lesson 2_2.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
www.eeworm.com/read/419727/10840481
c lesson 2_2.c
#include
#define uint unsigned int
sbit D0=P1^5;
void delay(uint);
void main()
{
while(1)
{
D0=0;
delay(62);
D0=1;
delay(62);
}
}
void delay(uint z)
{
uint x,y;