REGISTER value check #8
-
i dont know any way to check the register(general purpose register i.e AX,BX,CX,DX) value or any flag values is there any shortcut to check them or through terminal |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@Prithviraj009 , yes that is possible via the built-in Debugger functionality. In the debugger, navigate to "View \ Registers" to view the register window. Refer below screenshot. |
Beta Was this translation helpful? Give feedback.
@Prithviraj009 , yes that is possible via the built-in Debugger functionality.
Once an assembly program is opened in the IDE, you can click on 'Debug' icon to invoke the debugger.
In the debugger, navigate to "View \ Registers" to view the register window.
Next add breakpoint at desired location and use F7/F8 to step through the the program, the values of the registered will be visible in the register window.
Refer below screenshot.