|
|
Interruption
21h
|
Fonction 25h
|
Fixer l'adresse d'un vecteur d'interruption
|
|
CP/M, DOS 1.0.+, OS/2, Windows NT
|
Description
Cette fonction permet de fixer l'adresse d'un vecteur d'interruption.
Entrée
AH=25h
AL=Numéro d'interruption
DS:DX=Adresse du pointeur sur la nouvelle interruption
Sortie
Aucune
Remarques
-
Procedure SetIntVec(AL:Byte;DS,DX:Word);
Var
TableInt:Array[Byte]of Pointer Absolute 0:0;
Begin
ASM CLI; END;
TableInt[AL]:=Ptr(DS,DX);
ASM STI; END;
End;
|
|
|
| Dernière mise à jour: Lundi, le 24 juillet 2006 |