About 50 results
Open links in new tab
  1. c++ - How to disassemble a binary executable in Linux to get the ...

    Infact, the above disassembly compiles back to an object file without error— as sse-add-blk-2.s -o sse-add-blk-2.o —however dont expect this to work for any on larger or executable programs: …

  2. How to disassemble a memory range with GDB? - Stack Overflow

    Jul 26, 2018 · I'm trying to disassemble a program to see a syscall assembly instruction (the INT instruction, I believe) and the handler with GDB and have written a little program (see below) …

  3. How can I see the assembly code for a C++ program?

    May 8, 2009 · For best readability though, most debuggers will offer a view that interleaves the disassembly with the original source, so you can compare your code with the compiler's output …

  4. How do I disassemble raw 16-bit x86 machine code?

    Jul 5, 2019 · You may be able to hack it into doing disassembly by (a) having it show the instruction instead of simulating it, (b) having it not take conditional jumps or invoke calls, but …

  5. debugging - How to disassemble assembly code - Stack Overflow

    Mar 21, 2018 · Disassembly on Windows There isn't a built-in way to disassemble code, but the consensus for a third-party disassembler seems to be around IDA. It's typically not free, but for …

  6. debugging - Does VS Code have a memory viewer and/or a …

    The Disassembly view can be opened from an editor's context menu to show the disassembled source of the active stack frame, and it supports stepping through assembly instructions and …

  7. How to view the assembly behind the code using Visual C++?

    1 If you are talking about debugging to see the assembly code, the easiest way is Debug->Windows->Disassembly (or Alt-8). This will let you step into a called function and stay in …

  8. How to disassemble, modify and then reassemble a Linux …

    Apr 3, 2017 · The quality of the disassembly depends on how much effort you put into it. E.g., if you do not even supply the information that it is an elf file, the disassembly consist of single …

  9. Is it possible to "decompile" a Windows .exe? Or at least view the ...

    Nov 7, 2008 · Disassembly is simply this: a program reads through the binary (the machine code), replacing the op-codes with their equivalent assembly language commands, and outputs the …

  10. disassembly - Better way than a terminal+objdump to read …

    Dec 14, 2022 · All are far better alternatives than objdump for reading a disassembly. You can double-click on a jump to reach its target and all show the graph of basic blocks.