November 2019
Beginner to intermediate
674 pages
15h
English
Object files come in different formats and not all are useful for linking with Delphi. The three most common file formats that you'll encounter are OMF, COFF, and ELF.
The Relocatable Object Module Format (OMF) is a format developed by Intel. It was extensively used in DOS times. Support for linking OMF object files was already included in Turbo Pascal DOS compilers and is still present in modern Delphi.
To analyze an OMF file you can use the tdump utility (part of the Delphi and C++Builder standard installation) with the -d switch. A command such as tdump -d object_file.obj will output a bunch of information ...
Read now
Unlock full access