home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / sysutl / swap.arc / READ.ME next >
Text File  |  1989-03-24  |  1KB  |  36 lines

  1. SWAP.COM
  2.  
  3. This program allows you to shell out of your favorite editor and 
  4. compile a program without worrying about running out of memory.  SWAP
  5. works by swapping main memory to expanded memory (EMS V3.2 or better) or
  6. to disk, freeing main memory.  Then starts your compiler or whatever.
  7.  
  8. This program is from an article called "Swap" in Dr. Dobb's Journal (Vol
  9. 14, No 4, April 1989, pages 44-48).  Included is the assembly source
  10. code (SWAP.ASM) and the executable (SWAP.COM).  You can remake the
  11. executable by the following commands:
  12.  
  13.     MASM SWAP;
  14.     LINK SWAP;
  15.     EXE2BIN SWAP SWAP.COM
  16.  
  17. SWAP has the following command line options:
  18.  
  19. SWAP [options] command [command-parameters] [>filename]
  20.  
  21.     Brackets indicate optional parameters.
  22.  
  23.     SWAP options are:
  24.     -C    Copy redirected output to console.
  25.     -D    Disk file C:\SWAP.DAT is used instead of expanded memory.
  26.     -F    Forces SWAP to continue even if an interrupt vector
  27.         points to the swappee.
  28.     -Q    Quiet operation.  Informational messages are not displayed.
  29.  
  30.     "command" is any command that can be issued at the DOS prompt.
  31.  
  32.     "command-parameters" are parameters or options for the command.
  33.  
  34.     "filename" is a DOS file or device to which output from the
  35.         command be directed.
  36.