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

  1.     .model    large,pascal
  2.  
  3.     include ems.inc
  4.  
  5.     .code    EMS_TEXT
  6.  
  7.     ;ERR PUBLIC __ErrEmsDeallocatePages(HEMS hems);
  8.  
  9.     public    __ErrEmsDeallocatePages
  10. __ErrEmsDeallocatePages    proc    \
  11.     hems:word
  12.  
  13.     mov    dx,[hems]
  14.     EmsCall 45h
  15.     ret
  16.  
  17. __ErrEmsDeallocatePages    endp
  18.  
  19.     end
  20.