The MASM Forum Archive 2004 to 2012

Project Support Forums => 64 Bit Assembler => Topic started by: RBator on January 18, 2011, 09:48:06 PM

Title: example from masm64
Post by: RBator on January 18, 2011, 09:48:06 PM
ml64[/options]filelist[/link linkoptions]

how ought be  typical example for assembly and linking ?

niceday
RBator
Title: Re: example from masm64
Post by: GregL on January 26, 2011, 08:02:17 PM
RBator,

It's not much different than assembling and linking with ml.exe.


ml64.exe /c program.asm
link.exe /SUBSYSTEM:CONSOLE program.obj


If you are looking for example programs look around in this subforum.
Title: Re: example from masm64
Post by: RBator on February 02, 2011, 08:38:38 PM
Thank You

how can i disassembly in masm64 ?
Title: Re: example from masm64
Post by: GregL on February 03, 2011, 04:46:58 AM
Title: Re: example from masm64
Post by: RBator on February 03, 2011, 09:07:39 PM
give me any example .In WinDBg and visual C++ .
is masm64 compatible with visual c++ 2010 ?

Thank You
Title: Re: example from masm64
Post by: GregL on February 04, 2011, 05:13:07 AM
Quote from: RBatorgive me any example .In WinDBg and visual C++ .
In either case, just load the .exe that has been assembled and linked for Debug.

ML64: Use /Zi
LINK: Use /DEBUG

ML and ML64 Command-Line Reference (http://msdn.microsoft.com/en-us/library/s0ksfwcf.aspx)
Linker Options (http://msdn.microsoft.com/en-us/library/y0zzbyt4%28v=VS.100%29.aspx)

An example:
http://www.masm32.com/board/index.php?topic=10880.0

Quote from: RBatoris masm64 compatible with visual c++ 2010 ?
Yes, that's where it comes from.  It comes in the Windows SDK too.

Title: Re: example from masm64
Post by: Rockoon on March 22, 2011, 11:04:03 AM
Debugging is not the same as disassembling.

I dont think that there is a good 64-bit aware disassembler yet... certainly nothing as advanced as the great BlackIce from the 16-bit DOS days.
Title: Re: example from masm64
Post by: donkey on April 03, 2011, 09:54:39 PM
Smidgeon's PEBrowse Pro is 64 bit aware but isn't really a "great" disassembler however it does the trick in a pinch.

http://www.smidgeonsoft.prohosting.com/pebrowse-pro-file-viewer.html

Both the 32 bit and 64 bit versions can disassemble 64 bit code. Its heuristics are fairly primitive, it has issues distinguishing between data and code, though it does make an effort it's easy to trick, but then so is OllyDbg. It does do an excellent job of following code though.
Title: Re: example from masm64
Post by: GregL on April 04, 2011, 12:27:54 AM
Quote from: RockoonDebugging is not the same as disassembling.

I dont think that there is a good 64-bit aware disassembler yet... certainly nothing as advanced as the great BlackIce from the 16-bit DOS days.

Visual Studio 2010 and WinDbg will both produce a pretty decent 64-bit disassembly.  I guess it just depends on how advanced you want to get with it.