I want to write a program, while it runs, a window shows the hardware registers ax,bx.... just as the debugger does! Is there a handy control to show registers?
I want to write a program, while it runs, a window shows the hardware registers ax,bx.... just as the debugger does! Is there a handy control to show registers?
This is going to be a program that will depend on your hardware, but I guess you are aware of that. The simplest way IMO is to use an __asm section and assign the register values to local variables, that you then display. ~RaGE();