Interrupt in C

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Niks

    #1

    Interrupt in C

    Hey...
    Can anybody tell me where to get information about how to use the
    int86() function?
    Thank for reading...
    Nikhil

  • Ian Collins

    #2
    Re: Interrupt in C

    Niks wrote:
    Hey...
    Can anybody tell me where to get information about how to use the
    int86() function?
    It'll be in your platform's documentation.

    --
    Ian Collins.

    Comment

    • Kenny McCormack

      #3
      Re: Interrupt in C

      In article <1162886083.311 073.171700@e3g2 000cwe.googlegr oups.com>,
      Niks <nbokare@gmail. comwrote:
      >Hey...
      >Can anybody tell me where to get information about how to use the
      >int86() function?
      >Thank for reading...
      Pretty much like any other function. You call it, passing the
      appropriate number of arguments, each of the appropriate type.

      Comment

      • Mark McIntyre

        #4
        Re: Interrupt in C

        On 6 Nov 2006 23:54:43 -0800, in comp.lang.c , "Niks"
        <nbokare@gmail. comwrote:
        >Hey...
        >Can anybody tell me where to get information about how to use the
        >int86() function?
        Its not a standard C function, and how it works is platform specific.
        You'll need to read the documentation for your platform, and bear in
        mind that using an old compiler on a modern OS may not succeed, since
        the old compiler may assume it can do things to hardware that modern
        OSes prohibit.
        --
        Mark McIntyre

        "Debugging is twice as hard as writing the code in the first place.
        Therefore, if you write the code as cleverly as possible, you are,
        by definition, not smart enough to debug it."
        --Brian Kernighan

        Comment

        Working...