I have a program written in C calling a function written in assembly. When I run the debugger, I can step through the C code just fine, but then when it reaches the function, it won't step through the assembly code. It'll just go on to the next statement. In the assembly viewer I see:
call 0x1eda <isgreater>
and then the rest of the main function after that. How do I view the function isgreater?
My professor uses the Eclipse IDE and it can do it just fine. I'd rather use the Xcode IDE as Eclipse is very buggy.
Thanks!
Kyle.
call 0x1eda <isgreater>
and then the rest of the main function after that. How do I view the function isgreater?
My professor uses the Eclipse IDE and it can do it just fine. I'd rather use the Xcode IDE as Eclipse is very buggy.
Thanks!
Kyle.