home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / jsage / znode3 / util / memcom1.lbr / MEMCOM.DZC / MEMCOM.DOC
Encoding:
Text File  |  1993-06-08  |  2.1 KB  |  39 lines

  1. These programs establish a virtual "ram disk", drive "E:", of
  2. various sizes, using space from the TPA.  All that one must do
  3. is execute one of the MEM.COM programs, and a virtual disk will
  4. be created.  All subsequent references to "E:" will deal with the
  5. ram disk.  It appears that once installed, the only way to remove
  6. the ram disk is to reboot the system.
  7.  
  8. Patching Procedure:
  9.      In order to make A: through P: the default drive, patch the
  10. three addresses shown in the table below with the indicated bytes,
  11. using DDT, EDFILE or whatever (the addresses are the same in all 
  12. four MEMx.COM files):
  13.  
  14. DRIVE       PATCH FOR ADDRESS             DRIVE       PATCH FOR ADDRESS 
  15.           0208h   0235h   0356h                     0208h   0235h   0356h    
  16.   A        41h     41h     00h              I        49h     49h     08h
  17.   B        42h     42h     01h              J        4Ah     4Ah     09
  18.   C        43h     43h     02h              K        4Bh     4Bh     0Ah
  19.   D        44h     44h     03h              L        4Ch     4Ch     0Bh
  20.   E        45h     45h     04h              M        4Dh     4Dh     0Ch
  21.   F        46h     46h     05h              N        4Eh     4Eh     0Dh
  22.   G        47h     47h     06h              O        4Fh     4Fh     0Eh
  23.   H        48h     48h     07h              P        50h     50h     0Fh
  24.  
  25. Application Note:
  26.      Although the RAM drives created by these programs are quite small,
  27. they can be used effectively for small programs which do a lot of disk
  28. access.  For example, Steven Greenberg's CRUNCH23.LBR contains the file
  29. CRINSTAL.COM used to install CRUNCH.COM and UNCR.COM.  I used MEM24.COM
  30. to create a 27k RAM drive, and put these three .COM files on it.  After
  31. the last install option response, CRUNCH and UNCR were installed in about
  32. 200 milliseconds.
  33.  
  34.      This same install procedure done on my floppy drive caused so much
  35. rapid fire disk access that I thought something had gone wrong.  However,
  36. installation was finally completed in about 1 minute, 10 seconds.
  37.  
  38. Patching and apllication notes by Paul Foote, 02/17/87
  39.