I'm looking for a really simple HEX disassembler for windows that I can just throw some HEX at (either as text, or in a bin file) and have it disassemble it. At the moment I'm using the DOS debug command:
debug
-n file.bin
-l 0
-u 0
Which works fine, but its really cumbersome to use (I could probably use WinDbg too, but again its kind of cumbersome to use)
I've tried looking around on google and tried a couple of matches like OllyDbg, but OllyDbg just barfs at me complaining that file.bin isnt a proper Win32 executable.
All I want is a really simple decompiler, that faithfully attempts to interpret any HEX I throw at it.