Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ 3.0r4 - <b>int_gen</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
int_gen
   Note-This function is not available under OS/2.

Usage

   #include <int.h>

   void int_gen(int intno)

Description

   The function int_gen is used to generate a standard Intel 80x86
   interrupt, where intno is the interrupt to generate. The function is
   actually implemented inline in the header file int.h as asm(0xCD,i).

Example 

   #include <int.h>
   #include <stdlib.h>

   int main()
   {
       int_gen(5);         /* print-screen interrupt */
       return EXIT_SUCCESS;
   }

See Also

   The int_ functions.




See Also: int_

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson