Define the debugger. How to run the debugger tell the command, and all its parts? Question of Assembly
A debugger is a computer program that lets you run your program, line by line and examine the values of
variables or look at values passed into functions and let you figure out why it isn't running the way you
expected it to. We can run debugger by pressing F1 and F2.The debugger shows the values of registers, flags, stack, our code, and one or two areas of the system memory as data. Debugger allows us to step our program one instruction at a time and observe its effect on the registers and program data.
0 Comments
Please add nice comments or answer ....