Welcome![Sign In][Sign Up]
Location:
Search - omf coff

Search list

[WinSock-NDIScutebomb_blink

Description: blink的最新版本是1.04,它可以混合连接16位和32位代码,可连接Vc++,Borland c++生成的.obj文件,还能混合连接OMF和COFF格式的.obj文件,将微软和Borland大统一^ ^。生成的bin文件短小精悍,而且可以指定bin放在内存什么地址执行.对于嵌入式开发需要的bin可执行文件十分有用。感谢cutebomb提交。-blink of 1.04 is the latest version, which can link mixed 16 - and 32-bit code, which will connect Vc, Borland c generated. Obj files, and mixed connectivity OMF and COFF format. Obj files, Microsoft and Borland reunification ^ ^. Bin documents generated short and pithy, but can specify what bin on the memory address implementation. For embedded developers need bin executable file is very useful. Thank cutebomb submitted.
Platform: | Size: 33606 | Author: 张小姐 | Hits:

[assembly languageasm_module

Description: 该程序模拟UNIX中save与resume函数,并介绍在VC中如何使用汇编进行机器级的操作. 主函数很简单首先引入两个外部函数,extern \"C\"表示按传统C命名习惯.函数save将程序指针保存在(*s)中并返回0,为什么有 if(save(&sp)){...} if后的语句看起来永远都不会被执行,但是运行结果表明它被执行了.这个问题同UNIX中处理机调度函数(switch)的那个if语句(第一句)一样. 程序执行完save(&sp)后得到因为条件为假而执行else语句,却在判断之前将程序指针保存在sp中了. else语句中的resume(&sp),该函数很狡猾将堆栈中的返回地址改变了,改到了sp所指出,即将程序指针改到了执行条件判断前.resume返回1,条件满足,执行if语句. save函数堆栈: eip ebp+8 s ebp+4 ebp ebp+0 resume函数堆栈与save的相同. 新建一个win32的工程,将unixc.cpp和unix.obj加入过程即可. unix.obj是用masm6.11生成的:ml /c /coff unix.asm,生成coff格式的obj而不是omf格式.-the simulation UNIX save and resume function, and the VC on how to use the compiled class machines for the operation. main function is very simple to introduce the first two external function, extern "C" said C. named by the traditional habits. function pointer procedures will save preserved in (* s) and return 0, why are there if (save (
Platform: | Size: 6261 | Author: 摩尔 | Hits:

[Internet-Networkcutebomb_blink

Description: blink的最新版本是1.04,它可以混合连接16位和32位代码,可连接Vc++,Borland c++生成的.obj文件,还能混合连接OMF和COFF格式的.obj文件,将微软和Borland大统一^ ^。生成的bin文件短小精悍,而且可以指定bin放在内存什么地址执行.对于嵌入式开发需要的bin可执行文件十分有用。感谢cutebomb提交。-blink of 1.04 is the latest version, which can link mixed 16- and 32-bit code, which will connect Vc, Borland c generated. Obj files, and mixed connectivity OMF and COFF format. Obj files, Microsoft and Borland reunification ^ ^. Bin documents generated short and pithy, but can specify what bin on the memory address implementation. For embedded developers need bin executable file is very useful. Thank cutebomb submitted.
Platform: | Size: 33792 | Author: 张小姐 | Hits:

[assembly languageasm_module

Description: 该程序模拟UNIX中save与resume函数,并介绍在VC中如何使用汇编进行机器级的操作. 主函数很简单首先引入两个外部函数,extern "C"表示按传统C命名习惯.函数save将程序指针保存在(*s)中并返回0,为什么有 if(save(&sp)){...} if后的语句看起来永远都不会被执行,但是运行结果表明它被执行了.这个问题同UNIX中处理机调度函数(switch)的那个if语句(第一句)一样. 程序执行完save(&sp)后得到因为条件为假而执行else语句,却在判断之前将程序指针保存在sp中了. else语句中的resume(&sp),该函数很狡猾将堆栈中的返回地址改变了,改到了sp所指出,即将程序指针改到了执行条件判断前.resume返回1,条件满足,执行if语句. save函数堆栈: eip ebp+8 s ebp+4 ebp ebp+0 resume函数堆栈与save的相同. 新建一个win32的工程,将unixc.cpp和unix.obj加入过程即可. unix.obj是用masm6.11生成的:ml /c /coff unix.asm,生成coff格式的obj而不是omf格式.-the simulation UNIX save and resume function, and the VC on how to use the compiled class machines for the operation. main function is very simple to introduce the first two external function, extern "C" said C. named by the traditional habits. function pointer procedures will save preserved in (* s) and return 0, why are there if (save (
Platform: | Size: 6144 | Author: 摩尔 | Hits:

[File Formatomf

Description: 讲述的是Borland公司开发的一般编译器中生成的中间文件.obj的格式。-Companies on the development of the Borland compiler in the general middle-generated documents. Obj format.
Platform: | Size: 171008 | Author: 恒烨 | Hits:

[source in ebookourdev_486937

Description: Delphi能不能开发Windows的驱动程序(这里的驱动程序当然不是指VxD了^_^)一直是广大Delphi fans关注的问题。姑且先不说能或者不能,我们先来看看用Delphi开发驱动程序需要解决哪些技术上问题。 Delphi的链接器是无法生成Windows内核模式程序的,因此用delphi无法直接生成驱动程序。M$的链接器是可以生成Windows内核模式程序的,那么是否可以用Delphi生成目标文件,然后用M$链接呢?要这么做必须要解决以下的问题: Delphi生成的目标文件是OMF格式的,而M$ link虽然声称支持OMF格式的目标文件,但基本无用。最好能将OMF格式转换成COFF格式,EliCZ大侠的OMF2D正好可以解决这个问题。解决了目标格式的问题,一切都OK了吗?远没这么简单。继续之前,让我们先来看一下著名的DDDK吧。 DDDK(Delphi Driver Development Kit)是The Hacker Defender Project team发布的一个用Delphi开发Windows驱动程序的工具包,目前最新版是0.0.4版。DDDK是将常用的驱动API用Delphi做了层包装放在DDDK单元中,就像下面这样:-Delphi research-driven development chapter
Platform: | Size: 1280000 | Author: YF | Hits:

[OS programobjconv

Description: lib、obj格式轉換工具。 OMF.COFF等-Format transfer tool, transfers*.lib or*.obj format.
Platform: | Size: 707584 | Author: 楊瑜 | Hits:

[Software EngineeringObject File Formats For Embedded Systems

Description: In this paper, we review Intel OMF and COFF, and we also describe some important tools commercially available for handling these formatted object files. At last, we discuss the ideas for converting a relocatable COFF object file into a linkable Intel OMF object file, and propose a 6-step procedure for the conversion.
Platform: | Size: 94988 | Author: kimtan | Hits:

CodeBus www.codebus.net