home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / cdactual / program / asm / LOADAL.ZIP / README < prev    next >
Encoding:
Text File  |  1992-01-21  |  849 b   |  22 lines

  1. This is the Extended Memory access utility:
  2.  
  3. src        - Source code
  4.  
  5. xmemcpy.obj    - Huge model version of
  6.           void _xmemcpy(unsigned long dst, unsigned long src, size_t n);
  7.           // Copies a block from anywhere to anywhere in memory.
  8.  
  9. xmtest.exe    - Test utility: fills a block of memory by copying from a
  10.           local buffer.
  11.           Use: xmtest <hex absolute dest. address> <hex fill char> \
  12.                     <unsigned decimal #bytes>
  13.           e.g. "xmtest 180000 cc 99" to fill 99 bytes of memory at
  14.                location 1.5Meg with the byte CCh.
  15.  
  16. xmloop.exe    - Benchmark utility:
  17.           Use: xmloop <args as for xmtest> <long decimal #repetitions>
  18.           Repeats the fill operation of "xmtest" a specified #times,
  19.           to allow timing.
  20.           e.g. "xmtest 180000 cc 99 100000" to fill 99 bytes of memory
  21.                at location 1.5Meg with the byte CCh, 100000 times.
  22.