Saturday, November 3, 2012

Enable and Disable maskable Interrrupts

Disable Interrrupts:
eflags &= (0xffffffff-0x200);

Enable Interrupts:
eflags |= (0x200);

http://en.wikipedia.org/wiki/FLAGS_register

No comments: