python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Does inline ASM in C change disassembly?
I tried my best to search for this question before asking, but could not find an answer. Perhaps this question would be better suited to ask on the Reverse Engineering SE.
I am examining a 32-bit C Po...
Biggs
Votes: 0
Answers: 0
Why does "gdb> disas /s main" not show me source code?
I start with a binary executable and I want to see the source code, not just the assembly code. Is this possible? The documentation at "https://sourceware.org/gdb/onlinedocs/gdb/Machine-Code.ht...
pho bar
Votes: 0
Answers: 1
Can machine code executables be transpiled to other operating systems and architectures?
My novice understanding of the different machine code / binary executables is that they are specific to the operating system and the architecture they have been compiled for. Nevertheless, it appears ...

Foad S. Farimani
Votes: 0
Answers: 1
Does the %rax register contain the return value of function right after the 'call' instruction?
this is a simple disassembly code.
push %rbp
mov %rsp,%rbp
sub $0x10,%rsp
movq $0x0,-0x8(%rbp)
mov $0xf,%edi
callq 1070 <malloc@plt>
mov %rax,-0x8(%rbp)
mov -0x8(%rbp),%rax
m...
Kalo
Votes: 0
Answers: 1