64-Bit assembler for windows

Hi,

not a WDK question at all, but maybe someone knows: I am looking for a assembler that can run on a 32bit os and can generate a 64 bit binaryfile from source, not necessarily a PE structure. Its perfectly fine if the assembler can generate a “flat” binary image straight from the instructions. Does someone know some assembler that can do that? I am a little out of shape on that topic,… (who really needs assembly anymore nowadays) *g*

TIA

regards

K.

Yasm can do that out of the box; binutils/as/gas can also do this running
under cygwin/mingw, though you may have to build it yourself, depending on
the configuration of bfd.

For what it is worth, if you are planning on creating some sort of modified
output format, I would recommend going with yasm, as I find the source much,
much easier to understand.

Good luck,

mm

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of
xxxxx@arcor.de
Sent: Monday, November 01, 2010 4:56 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] 64-Bit assembler for windows

Hi,

not a WDK question at all, but maybe someone knows: I am looking for a
assembler that can run on a 32bit os and can generate a 64 bit binaryfile
from source, not necessarily a PE structure. Its perfectly fine if the
assembler can generate a “flat” binary image straight from the instructions.
Does someone know some assembler that can do that? I am a little out of
shape on that topic,… (who really needs assembly anymore nowadays) *g*

TIA

regards

K.


NTDEV is sponsored by OSR

For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars

To unsubscribe, visit the List Server section of OSR Online at
http://www.osronline.com/page.cfm?name=ListServer

Magic! Thanks! I am running some special code and self made asm executor under a C#/.NET runtime and i need some asm sequences i can run out from my .NET assembly and due to the fact i have to differentiate the os i need to run special instruction sequences depending on processor type . I know it sounds strange doing that on .NET but it has its purpose.

Thanks!

K.