home *** CD-ROM | disk | FTP | other *** search
/ Sound, Music & MIDI Collection 2 / SMMVOL2.bin / PROG / SMIXW124.ZIP / LOWMEM.C < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-26  |  1.3 KB  |  45 lines

  1. /* ██ lowmem.c ████████████████████████████████████████████████████████████ */
  2.  
  3. /* ════════════════════════════════════════════════════════════════════════ */
  4.  
  5. void dos_memalloc(short int para, short int *seg, short int *sel);
  6. #pragma  aux dos_memalloc = \
  7.   "push  ecx"               \
  8.   "push  edx"               \
  9.   "mov   ax, 0100h"         \
  10.   "int   31h"               \
  11.   "pop   ebx"               \
  12.   "mov   [ebx], dx"         \
  13.   "pop   ebx"               \
  14.   "mov   [ebx], ax"         \
  15.   parm   [bx] [ecx] [edx]   \
  16.   modify [ax ebx ecx edx];
  17.  
  18. /* ──────────────────────────────────────────────────────────────────────── */
  19.  
  20. void dos_memfree(short int sel);
  21. #pragma  aux dos_memfree =  \
  22.   "mov   ax, 0101h"         \
  23.   "int   31h"               \
  24.   parm   [dx]               \
  25.   modify [ax dx];
  26.  
  27. /* ════════════════════════════════════════════════════════════════════════ */
  28.  
  29. void *low_malloc(int size, short int *sel)
  30.   {
  31.     short int seg;
  32.  
  33.     dos_memalloc((size >> 4) + 1, &seg, sel);
  34.     return((char *)(seg << 4));
  35.   }
  36.  
  37. /* ──────────────────────────────────────────────────────────────────────── */
  38.  
  39. void low_free(short int sel)
  40.   {
  41.     dos_memfree(sel);
  42.   }
  43.  
  44. /* ████████████████████████████████████████████████████████████████████████ */
  45.