mirror of https://github.com/FDOS/kernel.git
from Lucho: basic implementation of
--------D-2F4A33----------------------------- INT 2F - Windows95 - CHECK MS-DOS VERSION 7 necessary for SpinRite (Steve Gibson) git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@748 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
parent
ee60fb10b8
commit
6534691f85
|
@ -63,7 +63,13 @@ Int2f3:
|
|||
je IntDosCal ; Dos Internal calls
|
||||
cmp ax,4a02h
|
||||
je IntDosCal ; Dos Internal calls
|
||||
|
||||
%ifdef WITHFAT32
|
||||
cmp ax,4a33h ; Check DOS version 7
|
||||
jne Check4Share
|
||||
xor ax,ax ; no undocumented shell strings
|
||||
iret
|
||||
Check4Share:
|
||||
%endif
|
||||
cmp ah,10h ; SHARE.EXE interrupt?
|
||||
je Int2f1 ; yes, do installation check
|
||||
cmp ah,08h
|
||||
|
|
|
@ -16,6 +16,7 @@ TARGETOPT=-3
|
|||
|
||||
!if $(XFAT) == 32
|
||||
ALLCFLAGS=$(ALLCFLAGS) -DWITHFAT32
|
||||
NASMFLAGS=$(NASMFLAGS) -DWITHFAT32
|
||||
!endif
|
||||
|
||||
NASM=$(XNASM)
|
||||
|
|
Loading…
Reference in New Issue