What is this? "Disassembly cannot be displayed in run mode"

  • Thread starter Thread starter kjon
  • Start date Start date
K

kjon

When I try to run any project, sometimes I will encounter this tab window in
the IDE which has the following message: "Disassembly cannot be displayed in
run mode".

I mean it'll show sometimes, and sometimes don't. Just wonder what is the
meaning of this? Do I need to concern of any wrong doing in my program or
codes?

Thanks in advance.
 
Kjon,
The "disassembly" tabs shows a disassembly of your program, a disassembly is
the machine code itself (the x86 Assembly language).

If you are running your program the debugger will not show you the
disassembly, however if you stop at a break point you can see the
disassembly, as its based on the current location within your program...

Hope this helps
Jay
 
Thanks Jay. Now at least I know what the tab is for. :) So I'm supposed it
has nothing to do with my program error, right?
 
Back
Top