代码搜索:Hello
找到约 10,000 项符合「Hello」的源代码
代码结果 10,000
www.eeworm.com/read/365212/9874993
o hello.o
www.eeworm.com/read/365212/9874995
opt hello.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/365212/9875012
htm hello.htm
Static Call Graph - [D:\学习\Arm程序gui\Hello\Hello\Hello.axf]
Static Call Graph for im
www.eeworm.com/read/365212/9875014
tra hello.tra
*** Creating Trace Output File 'Hello.tra' Ok.
### Preparing for ADS-LD.
### Creating ADS-LD Command Line
### List of Objects: adding '"s3c44b0x.o"'
### List of Objects: adding '"retarget.o"'
###
www.eeworm.com/read/365212/9875018
c hello.c
/******************************************************************************/
/* HELLO.C: Hello World Example */
/***********************************
www.eeworm.com/read/169141/9879906
ico hello.ico
www.eeworm.com/read/365074/9880206
o hello.o
www.eeworm.com/read/365074/9880213
c hello.c
int printf(char *msg);
char *p = "welcome to scc\n";
int main(void)
{
printf("hello world\n");
printf(p);
return 0;
}
www.eeworm.com/read/365074/9880223
asm hello.asm
section .data
global p
align 4
p:
dd L1
section .text
global main
main:
push ebx
push edx
push ecx
push esi
push edi
push ebp
mov ebp,esp
push L3
call printf
add esp, 4
mov edi, dword [p]
push edi
cal
www.eeworm.com/read/365033/9880868
c hello.c
/* HELLO.C -- Hello, world */
#include
main()
{
printf("Hello, world\n");
}