Hi,
I'm trying to build an interrupt handler that directly accesses hardware, patching into the original interrupt handler (int 9). While reviewing documentation on the subject, it appears that actual windows operating systems, working in protected mode, won't allow me to:
- use the cli and sti functions
- change the interrupt vector table
- use all other nete functions that access hardware and memory
and thus it would be impossible to achieve what I want.
Can someone explain why this is, or give me a solution to that?
Thanks in advance.
I'm trying to build an interrupt handler that directly accesses hardware, patching into the original interrupt handler (int 9). While reviewing documentation on the subject, it appears that actual windows operating systems, working in protected mode, won't allow me to:
- use the cli and sti functions
- change the interrupt vector table
- use all other nete functions that access hardware and memory
and thus it would be impossible to achieve what I want.
Can someone explain why this is, or give me a solution to that?
Thanks in advance.