home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / vm / src / xms / xms03.asm < prev    next >
Encoding:
Assembly Source File  |  1993-12-13  |  282 b   |  23 lines

  1.     .model    large,pascal
  2.  
  3.     include xms.inc
  4.  
  5.     .code    XMS_TEXT
  6.  
  7.     ;ERR PUBLIC __ErrXmsGlobalEnableA20(void);
  8.  
  9.     public    __ErrXmsGlobalEnableA20
  10. __ErrXmsGlobalEnableA20    proc
  11.  
  12.     XmsCall 03h
  13.     jc    Exit        ;Brif error
  14.  
  15.     xor    ax,ax
  16.  
  17. Exit:
  18.     ret
  19.  
  20. __ErrXmsGlobalEnableA20    endp
  21.  
  22.     end
  23.