This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I've already set breakpoint at address 0x000004ed. But why can't I access it even after the code has been ran? (gdb) disassemble main Dump of assembler code for function main: 0x000004ed <+0>: push ebp 0x000004ee <+1>: mov ebp,esp 0x000004f0 <+3>: sub esp,0x10 0x000004f3 <+6>: call 0x512 <__x86.get_pc_thunk.ax> 0x000004f8 <+11>: add [...] read more
When I disassemble c program with gdb, I get error. I googled it but no result found that I want. Can someone help me? my document first.asm is: global main main: mov eax, 1 mov ebx, 2 add eax, ebx ret root@kali-linux:~/my-document/test# gdb ./first GNU gdb (Debian 7.12-6) 7.12.0.20161007-git Copyright [...] read more