|
What level of interrupt handler are you talking about?
If you only deal with it in your own program, you can directly set a breakpoint, but if you want to debug the system's interrupt handler, then:
If it is DOS, you can directly access the address where the interrupt handler is located. Under WINDOWS, you must make your debugging code have RING0 level permissions, you can use a virtual drive or WINIO (commonly used), create interrupt descriptors and other methods . |
|