home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sonderh1 / exitint.inc < prev    next >
Text File  |  1987-05-18  |  898b  |  23 lines

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