DMD/Windows: Inspect generated ASM?
Andrej Mitrovic
andrej.mitrovich at gmail.com
Sun Apr 8 06:56:20 PDT 2012
On 4/8/12, Stefan <stefan at schuerger.com> wrote:
> Any good tools for this (link)? So far I only found old .obj
> tools from the 90s on the web...
I use objconv. http://www.agner.org/optimize/#objconv
I use this batch script to disasm an .obj file and open the .asm file:
@echo off
setlocal EnableDelayedExpansion
objconv -fnasm %~nx1 %~n1_disasm.asm && %~n1_disasm.asm
I forgot by now just how those %~ thingies work. Windows batch is a
funny language.
More information about the Digitalmars-d-learn
mailing list