On 4/8/12, Stefan <[email protected]> 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.
