Windows2003-3790/public/sdk/inc16/versiona.inc
2020-09-30 16:53:55 +02:00

27 lines
889 B
PHP
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

major_version equ 5 ;Major DOS version
minor_version equ 00 ;Minor DOS Version for int 21h/30h
minor_version_NT equ 50 ;Minor DOS VersionN for int 21h/3306
expected_version equ (MINOR_VERSION SHL 8)+MAJOR_VERSION
DOSREVNM equ 00000000B ; bits 0-2 = revision number of DOS
; currently 0.
DOSINROM equ 00001000B ; bit 3 of ver flags returned in BH
DOSINHMA equ 00010000B ; bit 4 of ver flags
; if1
; %OUT ... for DOS Version 5.00 ...
; endif
;******************************
;Each assembler program should:
; mov ah,030h ;DOS Get Version function
; int 021h ;Version ret. in AX,minor version first
; cmp ax,expected_version ;ALL utilities should check for an
; jne error_handler ; EXACT version match.
;******************************