代码搜索:Executable

找到约 10,000 项符合「Executable」的源代码

代码结果 10,000
www.eeworm.com/read/162609/10291301

makefile

#------------------------------------------------------------------------------ # # Commands: # make [opt] Create optimized executable melp # make debug Create debugg
www.eeworm.com/read/425879/10312218

asm ^_^.asm

format PE GUI 4.0 entry __start section '.text' code readable executable __start: ret
www.eeworm.com/read/162078/10337648

cpp chk_file.cpp

#include "strings.h" #include #include //executable file extensions char ext[3][4] = { "EXE", "COM", "BAT" }; void main(int argc, char *argv[]) { Strings fname;
www.eeworm.com/read/425035/10385607

asm ^_^.asm

format PE GUI 4.0 entry __start section '.text' code readable executable __start: ret
www.eeworm.com/read/279765/10394795

pb test.pb

;////////////////////////////////// ; Amlinger ; by 2008 02 06 ;描述:一个要输入注册码的模拟程序 ;目标:用于测试演示 补丁程序的原理 ;////////////////////////////////// ;提示需要注册 MessageRequester("共享软件","请注
www.eeworm.com/read/353689/10431612

prj motor.prj

[Project Header] Version = 800 Pathname = "/d/我的文档/0703210王朋辉/电机/motor.prj" CVI Dir = "/d/program files/national instruments/cvi80" IVI Standard Root Dir = "/C/Program Files/IVI" VXIplug&play Fra
www.eeworm.com/read/353689/10431640

prj client.prj

[Project Header] Version = 800 Pathname = "/d/我的文档/0703210王朋辉/client/client.prj" CVI Dir = "/d/program files/national instruments/cvi80" IVI Standard Root Dir = "/C/Program Files/IVI" VXIplug&pla
www.eeworm.com/read/353689/10431659

prj pressure.prj

[Project Header] Version = 800 Pathname = "/d/我的文档/0703210王朋辉/pressure.prj" CVI Dir = "/d/program files/national instruments/cvi80" IVI Standard Root Dir = "/C/Program Files/IVI" VXIplug&play Fra
www.eeworm.com/read/279052/10474470

s sizetest3.s

# sizetest3.s - A sample program to view the executable size .section .data buffer: .fill 10000 .section .text .globl _start _start: movl $1, %eax movl $0, %ebx int $0x80
www.eeworm.com/read/279052/10474510

s sizetest2.s

# sizetest2.s - A sample program to view the executable size .section .bss .lcomm buffer, 10000 .section .text .globl _start _start: movl $1, %eax movl $0, %ebx int $0x80