The old Debug is missing

Started by HellOfMice, January 20, 2025, 07:41:13 PM

Previous topic - Next topic

HellOfMice

Do you know a tool like debug where I enter value and it gives mnemonic and operands?
Or Should I write a bin file and try to import it in podebug?


Good Night

Vortex

Hi Philippe,

You can try objdump, a tool from GNU binutils to disassemble a flat binary file :

objdump -D -Mintel,i8086 -b binary -m i386 mbr.bin
objdump -D -Mintel,i386 -b binary -m i386 foo.bin    # for 32-bit code
objdump -D -Mintel,x86-64 -b binary -m i386 foo.bin  # for 64-bit code


https://stackoverflow.com/questions/14290879/disassembling-a-flat-binary-file-using-objdump

Another option is looking for online binary file disassemblers.
Code it... That's all...

HellOfMice

I suggest to add a button "Thank Vortex" near than "Answer"


That's what I want


Than you very much again Vortex

Vortex

Hi Philippe,

You can also try Japheth's CDBA :

QuoteB. CDBA (Win32 and Win64)
CDBA is a CDB-like debugger - with a commandline UI - written in assembly (Masm-style). This debugger uses the MS Debug Engine. There is a Win64 version, CDBA64, and a Win32 version, CDBA ( CDBA can debug Win32 applications and DOS applications running in NTVDM). All debuggers allow debugging on both assembly and source code level. CDBA is Public Domain.

https://www.japheth.de/debxxf.html
Code it... That's all...