home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / 1988 / 01 / sendkeys / exitint.inc < prev    next >
Encoding:
Text File  |  1987-10-26  |  1011 b   |  20 lines

  1. (* ------------------------------------------------------------------------ *)
  2. (*                                    EXITINT.PAS                           *)
  3. (*   Inline-Anweisung zum Ende einer Interrupt-Routine mit Verzweigung zu   *)
  4. (*                          einer fortsetzenden Routine                     *)
  5.   Inline (
  6.     $FA/            { CLI            }
  7.     $1F/            { POP  DS        }
  8.     $07/            { POP  ES        }
  9.     $5E/            { POP  SI        }
  10.     $5F/            { POP  DI        }
  11.     $5A/            { POP  DX        }
  12.     $59/            { POP  CX        }
  13.     $5B/            { POP  BX        }
  14.     $58/            { POP  AX        }
  15.     $5D/            { POP  BP        }
  16.     $89/$EC/        { MOV  SP,BP     }
  17.     $5D/            { POP  BP        }
  18.     $2E/$FF/$2E/    { JMP CS: ...    }
  19. (* ------------------------------------------------------------------------ *)
  20. (*                              Ende von EXITINT.INC                        *)