The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => Miscellaneous Projects => Topic started by: jdoe on December 09, 2008, 11:45:06 AM

Title: BIN2OBJ - Binary to object file converter
Post by: jdoe on December 09, 2008, 11:45:06 AM

This little GUI utility do the same as fda2 from hutch or bin2coff from vortex. I did it to get used to pe files and understand a little bit more the file layout. The difference from the above mentionned programs is that bin2obj is using a worker thread in case of big file conversion and do few file alignments (that could be useless but this is how I wanted the object file).

Almost all the source code is included except 3 functions from my library and the resource file. It was not made with masm32 so the source is there only for information purpose. Mainly, it is a Win32 API based program.

:8)


EDIT4: Final release v1.4


[attachment deleted by admin]
Title: Re: BIN2OBJ - Binary to object file converter
Post by: Vortex on December 09, 2008, 11:57:54 AM
Hi jdoe,

Nice tool :U

A small suggestion : Bin2obj adds the leading underscore by default. You should let the user to decide to insert the underscore or not. Some assemblers are producing MS COFF modules with no decoration.
Title: Re: BIN2OBJ - Binary to object file converter
Post by: jdoe on December 09, 2008, 12:21:24 PM

Vortex,

Does that name decoration on other assemblers implies only leading underscores ?

In that case I would prefer a checkbox about alternative name decoration than having to put one.

Title: Re: BIN2OBJ - Binary to object file converter
Post by: Vortex on December 09, 2008, 12:40:12 PM
Hi Jdoe,

The name decoration with the @xx symbols is also including the underscore. The decoration can be complex in the situation of C++

By default, assemblers like Fasm, GoAsm and SolAsm are writing bare symbols to the COFF output file. Adding a checkbox is a good idea.
Title: Re: BIN2OBJ - Binary to object file converter
Post by: jdoe on December 10, 2008, 09:58:50 AM

New version uploaded. See first post.


http://www.masm32.com/board/index.php?topic=10460.0

Title: Re: BIN2OBJ - Binary to object file converter
Post by: Vortex on December 10, 2008, 10:21:41 AM
It works fine :U
Title: Re: BIN2OBJ - Binary to object file converter
Post by: jdoe on December 10, 2008, 11:09:11 AM
Quote from: Vortex on December 10, 2008, 10:21:41 AM
It works fine :U

Great and thanks for your input.

:thumbu

Title: Re: BIN2OBJ - Binary to object file converter
Post by: jdoe on December 13, 2008, 10:23:52 AM
New upload v1.4

Final release   :clap: