Section courante

A propos

Section administrative du site

Interruption 21h

Fonction 30h

Lecture du numéro de la version DOS
DOS 2.0.+, OS/2, Windows NT

Description

Cette fonction permet de demander la version proposé du système d'exploitation.

Entrée

Registre Valeur ou description
AH 30h
A partir du DOS Version 5+
AL Ce registre permet d'indiquer l'indicateur d'informations supplémentaire :
Option Description
00h Numéro OEM
01h Drapeau de version

Sortie

Registre Valeur ou description
AL Ce registre permet d'indiquer le numéro de version principal
AH Ce registre permet d'indiquer le numéro de version complémentaire (sous-version) :
AL (Version) AH (Sous-version) Description
00h (0) 00h (0) DOS Version 1.0, 1.10 ou 1.25
02h (2) 00h (0) MS-DOS Version 2.0
02h (2) 01h (1) MS-DOS Version 2.1
02h (2) 0Ah (10) MS-DOS Version 2.10
02h (2) 0Bh (11) MS-DOS Version 2.11
03h (3) 00h (0) MS-DOS Version 3.0
03h (3) 05h (5) MS-DOS Version 3.5
03h (3) 0Ah (10) MS-DOS Version 3.10
03h (3) 14h (20) MS-DOS Version 3.20
03h (3) 15h (21) MS-DOS Version 3.21 ou MS-DOS 3.21 Enhanced Amdek
03h (4) 00h (0) MS-DOS Version 4.0, MS-DOS Version 4.01, PC DOS version 4.00 ou IBM DOS 4.
05h (5) 00h (0) MS-DOS Version 5.0, IBM DOS 5 ou PC DOS 5.00.1
05h (5) 00h (0) Boite DOS de Windows Server 2003
05h (5) 02h (2) PC DOS 5.02
05h (5) 05h (5) Boite DOS de Windows NT
06h (6) 00h (0) MS-DOS Version 6.0 ou PC DOS 6.1
06h (6) 14h (20) MS DOS 6.20 ou MS DOS 6.21
06h (6) 16h (22) MS DOS 6.22
06h (6) 1Eh (30) PC DOS 6.30
07h (7) 00h (0) Le MS-DOS de Windows 95 ou le PC DOS 2000.
07h (7) 0Ah (10) Windows 95, Windows 98 ou Windows 98 SE ou PC DOS 7.1.
08h (8) 00h (0) Le MS-DOS de Windows Millenium
0Ah (10)   Boite de compatibilité d'OS/2 version 1.x
14h (20)   Boite de compatibilité d'OS/2 version 2.x
14h (20) 1Eh (30) La machine virtuelle DOS d'OS/2 Warp 3
14h (20) 28h (40) La machine virtuelle DOS d'OS/2 Warp 4
... ... Autres versions de DOS
BH Ce registre permet d'indiquer la version du code OEM si DOS version 5+ et demander comme option

Remarques

Exemple

L'exemple permet de retourner correctement la version du DOS :

  1. MOV AH,30h 
  2. INT 21h 
  3. OR AX,AX 
  4. JNZ @End 
  5. ; Écrit la version 1.0 si le DOS est 0.0 donc en fin de compte la version 1
  6. MOV AH,1 
  7. @End:

Références

La Bible du PC: Programmation système - Sixième Edition, Edition Micro-Application, Michael Tischer, 1996, ISBN: 2-7429-0544-8, page 1515.
Aide-mémoire des interruptions du MS-DOS, Edition Marabout, Philippe Mercier, 1990, ISBN: 2-501-01297-6, page 186 à 187.

Dernière mise à jour : Jeudi, le 3 mars 2016