The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: enitol on September 07, 2010, 07:55:01 PM

Title: Raw binary code
Post by: enitol on September 07, 2010, 07:55:01 PM
Can masm32 produce raw code? (without all the "junk" that goes in the .obj files)
The thing you get with nasm when using "nasm whatever.asm"
I'm sure it can but I'm wondering how it's done.
Title: Re: Raw binary code
Post by: clive on September 07, 2010, 08:12:27 PM
Use a linker that generates a HEX or BIN file. Or use a COFF/OMF to BIN tool.
Title: Re: Raw binary code
Post by: enitol on September 07, 2010, 08:25:50 PM
Quote from: clive on September 07, 2010, 08:12:27 PM
Use a linker that generates a HEX or BIN file. Or use a COFF/OMF to BIN tool.
Any specific suggestions?
Title: Re: Raw binary code
Post by: enitol on September 11, 2010, 06:54:43 PM
Did some searching but couldn't find anything. Exe2bin doesn't work and neither a few other apps I tried. If you know of such an application a link would be appreciated.
Title: Re: Raw binary code
Post by: bomz on September 11, 2010, 07:10:43 PM
may be you mean this?

Quote
@ECHO OFF
COLOR 9F
CLS
C:\masm32\bin\ml.exe /AT /Bl C:\masm32\bin\link16.exe noname.asmĀ 
DEL noname.obj
pause
Title: Re: Raw binary code
Post by: enitol on September 11, 2010, 09:37:35 PM
That's what I need. Thanks.
Title: Re: Raw binary code
Post by: Vortex on September 12, 2010, 12:24:16 PM
Quote from: enitol on September 07, 2010, 07:55:01 PM
(without all the "junk" that goes in the .obj files)

Did you read ever the MS COFF and \ or OMF object file format specification before naming the content of .obj files as "junk" ?
Title: Re: Raw binary code
Post by: enitol on September 13, 2010, 10:35:02 AM
I only needed the generated opcodes, nothing else. Therefore I reserve my right to call everything else "junk" lol
I know that "the named contents of .obj files" aren't junk and have their specific use but in this case they are.

On the other hand this wasn't supposed to be an argument. I got an answer to my question and I thank you guys for that.
Title: Re: Raw binary code
Post by: Vortex on September 13, 2010, 05:33:51 PM
Quote from: enitol on September 13, 2010, 10:35:02 AM
I only needed the generated opcodes, nothing else. Therefore I reserve my right to call everything else "junk" lol

So, you didn't have to mention about object files...
Title: Re: Raw binary code
Post by: enitol on September 14, 2010, 06:57:52 PM
True. But object files were the closest thing to "raw binary code" I had at the time of posting. So it felt natural to mention that.
No hurt feelings?
Title: Re: Raw binary code
Post by: Vortex on September 15, 2010, 05:41:59 PM
Yes, but "junk" is a bit strong word here.
Title: Re: Raw binary code
Post by: bomz on September 16, 2010, 04:50:15 AM
*
Title: Re: Raw binary code
Post by: hutch-- on September 16, 2010, 06:00:39 AM
bomz,

Share this piece of genius with us, what is the point of posting a list of API functions ?