[cs13001] Object code tool

Mikhail Nesterenko mikhail at cs.kent.edu
Wed Jan 23 19:15:17 EST 2013


> 
> Is there a tool to edit object code?
> 

I do not believe you can edit executable code. However, there is a
way to observe the machine-level code during debugging in Visual
Studio. When tracing (and suspended on a particular statement) hit
Alt+8 or select "debugging options" from the toolbar's dropdown menu
and use option "Disassembly". 

A disassembly window appears that shows the machine level code
generated for the particular source level instructions. Visual Studio
even allows you to trace through individual instructions.

Thanks,
--
Mikhail


More information about the cs13001 mailing list