|
|
Get station no. of current File Server
Remarks :
You may use this function and "Get station address" ( AX = FF82h)
for determining that the computer you are using is either a File
Server or a WorkStation.
mov ax, 0FF91h
int 21h
mov MyFileServerStation, al
mov ax, 0FF82h
int 21h
cmp al, MyFileServerStation
je IsOnTheFileServerNow
IsOnTheWorkStationNow:
: :
: :
IsOnTheFileServerNow:
: :
: : | ||||||||||||||||||||||||||||||||||||||
|
|