About 6,280,000 results
Open links in new tab
  1. 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 …

  2. 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: …

  3. 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 …

  4. disassembly - How to disassemble a memory range with GDB

    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) …

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

    May 8, 2009 · The Disassembly view shows the loaded program as assembler instructions mixed with source code for comparison. The currently executing line is indicated by an arrow marker …

  6. Show current assembly instruction in GDB - Stack Overflow

    For example, we can configure GDB Dashboard to show disassembly, source, registers and stack with: dashboard -layout source assembly registers stack Here is what it looks like if you enable …

  7. 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 …

  8. unix - disassemble ELF file (Linux/ubuntu) - Stack Overflow

    Jun 20, 2022 · I want disassemble ELF file and then add my assemblies then reassemble it I used : objdump -D hello.elf > hello.asm ----> fasm hello.asm hello.elf -m 1000000 I have an …

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

    Apr 3, 2017 · There are two examples given of elf-executables with their disassembly and reassembly. It was originally designed to be able to modify a booting system, consisting of …

  10. 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 …