home *** CD-ROM | disk | FTP | other *** search
- (* ---------------------------------- *)
- (* EXITINT.PAS *)
- (* Inline-Anweisung zum Ende einer *)
- (* Interrupt-Routine mit Verzweigung *)
- (* zu einer fortsetzenden Routine *)
-
- Inline (
- $FA/ { CLI }
- $1F/ { POP DS }
- $07/ { POP ES }
- $5E/ { POP SI }
- $5F/ { POP DI }
- $5A/ { POP DX }
- $59/ { POP CX }
- $5B/ { POP BX }
- $58/ { POP AX }
- $5D/ { POP BP }
- $89/$EC/ { MOV SP,BP }
- $5D/ { POP BP }
- $2E/$FF/$2E/ { JMP CS: ... }
-
- (* ---------------------------------- *)
- (* Ende von EXITINT.INC *)