home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / MEMORIA / CTMAP095.ZIP / CTMAP095.DOC < prev    next >
Encoding:
Text File  |  1990-02-04  |  11.7 KB  |  307 lines

  1. CTMAP 0.95 - DOS memory extender for 80286, 80386 and '386SX "AT" computers
  2.              which use Chips & Technologies DRAM controller chips.
  3.  
  4. LOADHIGH 0.97 - Makes memory-resident software load in high RAM
  5.  
  6.  
  7.  Copyright 1989-1990, Burton Systems Software.  All rights reserved.
  8.  
  9.                        Burton Systems Software
  10.                   P.O. Box 4156, Cary, NC 27519 USA
  11.                            (919) 856-0475
  12.  
  13.  
  14. OVERVIEW
  15. --------
  16.  
  17. The CTMAP package contains two programs: CTMAP and LOADHIGH.
  18.  
  19. CTMAP:
  20.  
  21. If you are using an 80286, 80386 or 80386SX computer which has a Chips
  22. and Technologies 82C302, 82C307 or 82C212 DRAM controller chip, CTMAP can
  23. dramatically increase the amount of usable RAM memory available to DOS
  24. - from the usual 640K to as much as 944K, depending upon what adapters
  25. you have installed in your computer.
  26.  
  27. If you do not use EGA or VGA graphics, them 64-96K of this additional
  28. memory will usually be contiguous with the 640K of memory which DOS
  29. normally uses, increasing that area to 704K or 736K.  Additionally, CTMAP
  30. can enable DOS to use up to 240K of discontiguous RAM, located above the
  31. display adapter RAM and below the ROM BIOS.  However, some programs can't
  32. use discontiguous RAM (and CHKDSK ignores it).
  33.  
  34. LOADHIGH:
  35.  
  36. LOADHIGH is used to make programs (expecially TSRs) load in high memory.
  37. By installing your TSRs in high memory (above the display RAM), you
  38. can further increase the amount of contiguous low memory available for
  39. other application programs.
  40.  
  41.  
  42. CTMAP
  43. -----
  44.  
  45. For operating instructions, run CTMAP like this:
  46.  
  47.         CTMAP ?
  48.  
  49. Typical usage with EGA or VGA aapter is:
  50.  
  51.         CTMAP /A -A -B
  52. or:
  53.         CTMAP /A -A -B -C
  54.  
  55. Typical usage with monochrome adapter is:
  56.  
  57.         CTMAP /A
  58. or
  59.         CTMAP /A +B4
  60.  
  61.  
  62.  
  63. LOADHIGH
  64. --------
  65.  
  66. For operating instructions, run LOADHIGH like this:
  67.  
  68.         LOADHIGH ?
  69.  
  70.  
  71.  
  72. HOW IT WORKS
  73. ------------
  74.  
  75. CTMAP is simplicity itself.  Mainly, what it does is manipulate the
  76. hardware registers in the C&T DRAM controller chip to enable the "extra"
  77. RAM which is already there on your computer, then it patches up the DOS
  78. memory control block chain so that DOS "knows about it."
  79.  
  80. The DOS memory control block chain is documented in a number of places.
  81. See, for instance, the Microsoft's MS-DOS Encyclopedia, or the Turbo
  82. Pascal source code for Kim Kokkonen's famous MAPMEM utility.
  83.  
  84. LOADHIGH is even simpler than CTMAP.  Mainly what it does is patch the
  85. "owner" field in DOS memory control blocks so that DOS considers them
  86. used or available.
  87.  
  88.  
  89. CAVEATS
  90. -------
  91.  
  92. 1) No warranties of any kind are expressed or implied.  Use at your own
  93. risk.
  94.  
  95. 2) If you find that some I/O device or EMS memory card fails when you
  96. use "CTMAP /A", you can use explicit "-xx" options to prevent CTMAP from
  97. using particular areas of RAM.  We suggest trial and error to determine
  98. which memory segments you can and cannot allow CTMAP to use.  For display
  99. adapters, the most likely culprits are the A, B and C segments.  Example:
  100.  
  101.     CTMAP -A -B -C /A
  102.  
  103. 3) A few TSRs may not work when loaded in high memory.  In particular,
  104. TSRs which increase the size of the keyboard type-ahead buffer cannot
  105. work when loaded in high memory.
  106.  
  107. 4) We've noticed that some command line editor programs get confused
  108. about which retrieval buffer to use if they are loaded in high memory or
  109. if they are loaded before CTMAP and LOADHIGH are run.  DOSEDIT, NDOSEDIT
  110. and RETRIEVE have this problem, so if you use one of them, you should
  111. install it at the end of your AUTOEXEC.BAT, after the "LOADHIGH OFF".
  112. However, CED and PCED (two other popular command line editors) do not
  113. seem to have this problem.  We've not yet tried ANARKEY (yet another
  114. command line editor).
  115.  
  116. 5) So far, we have been unable to make device drivers load in high memory.
  117. If you are an expert on the guts of DOS and know how to do this, we'd
  118. welcome the help.  In the meantime, we suggest that users of CTMAP use
  119. a TSR-style RAMDISK or CACHE program instead of DOS's VDISK, or else (if
  120. you have more than 1 megabyte of RAM memory), run it with the buffer in
  121. extended or expanded memory.
  122.  
  123. 6) We're using undocumented DOS features to manipulate the DOS memory
  124. pool, so we cannot guarantee compatibliity with future DOS releases.
  125. If you have a problem, let us know - perhaps we can solve it.
  126.  
  127. 7) We think that, with minor modifications, the techniques used by CTMAP
  128. could be made to work with computers based upon the Chips and Technologies
  129. '386-SX CHIPSET and the '286 NEAT chip set.  However, we have not yet
  130. done this.
  131.  
  132. 8) We recommend the use of Chris Dunford's PMAP program to display the
  133. DOS memory pool.  It is very similar to Kim Kokkonen's MAPMEM, but it
  134. does a better job of displaying information about "high" memory.  If
  135. you received CTMAP on diskette, you may have also received a copy of
  136. PMAP.  However, PMAP is not a part of the CTMAP package!  PMAP is a
  137. different product, from a different company; see PMAP.DOC for shareware
  138. registration requirements for PMAP.
  139.  
  140.  
  141. LANs
  142. ----
  143.  
  144. Most local area network adapters use some high address space.  CTMAP
  145. will generally detect the LAN adapter RAM and/or ROM, and not enable
  146. general purpose RAM at that address.  In other words, CTMAP will
  147. probably not interfere with your LAN, but the presence of the LAN
  148. adapter will probably reduce the amount of RAM which CTMAP can add to
  149. DOS's memory pool.
  150.  
  151. If you can choose the memory address for your LAN card, it is a good
  152. idea to try to pick an address adjacent to either the ROM BIOS (at
  153. F0000) or the display RAM (the address depends upon your display
  154. adapter).  This will allow CTMAP to add the high memory to DOS's
  155. memory pool as one big chunk of memory instead of two little chunks,
  156. so that bigger programs will fit in it, with less wasted RAM.
  157.  
  158. Example:
  159.  
  160. We use Novell Netware on an Arcnet, using Network Innovations' PcARC
  161. network adapter.  It uses 16K of RAM at an address which is selected
  162. by DIP switches on the board.  The most common setting, and the one
  163. expected by Novell's ANET3.COM program is:
  164.  
  165.         D0000 (the default)
  166.  
  167. However, we relocated it to:
  168.  
  169.         EC000 (just below the BIOS RAM)
  170.  
  171. (Note: the Network Innovations documentation refers to these addresses
  172. as D000H and EC00H.)
  173.  
  174. To use the reconfigured card with one version of Novell Netware, it was
  175. necessary to patch ANET3.COM.  That version of Netware uses a 50605 byte
  176. version of ANET3.COM, dated 05/16/88.  When run with the "I" option it
  177. displays:
  178.  
  179.     Advanced/SFT NetWare V2.01-2 Workstation Shell for PC DOS V3.x
  180.     Copyright (c) by Novell, Inc.  1983, 1987
  181.     LAN Option: Standard Microsystems ARCNET
  182.  
  183. That version of ANET3.COM is fairly easy to patch (if you are
  184. comfortable using DOS debug).  Simply use DOS debug to search the
  185. file for the eight instances of 00 D0, and change all eight instances
  186. to 00 EC.
  187.  
  188. Recently, we upgraded to a newer version of Netware which had to
  189. be patched differently.  Instead of ANET3.COM, it has programs named
  190. IPX.COM and NET3.COM (or NET4.COM).
  191.  
  192. IPX.COM is the program which needs to be patched.  Ours is 27966 bytes
  193. long, dated 8/25/89.  When installed for our LAN card, it displayed:
  194.  
  195.     Novell IPX/SPX V2.15
  196.     (C) Copyright 1985, 1988 Novell Inc.  All Rights Reserved.
  197.     LAN Option: Standard Microsystems ARCNET/Pure Data  V1.00
  198.     Hardware Configuration: IRQ = 2, I/O Base = 2E0h, RAM Buffer at D000:0
  199.  
  200. In our case, it was easy to patch the IPX.COM memory address.  We simply
  201. used DOS debug to search the file for the first instance of 00 D0, and
  202. we changed it to the desired address (00 EC, in our case).  For esthetics,
  203. we also patched the string which follows to indicate the proper address
  204. ("EC00:0" instead of "D000:0"), so that the patched version of IPX.COM
  205. displays the proper address when it is installed:
  206.  
  207.     Hardware Configuration: IRQ = 2, I/O Base = 2E0h, RAM Buffer at EC00:0
  208.  
  209. IPX.COM contains a table of 18 combinations of hardware settings; the spot
  210. we patched was the first entry in the table.  If your LAN uses a different
  211. interrupt level (IRQ) or I/O Base, you'll have to patch a different table
  212. entry.
  213.  
  214.  
  215. LICENSE
  216. -------
  217.  
  218. This software is not free.  You may try it out on your computer(s) at no
  219. cost, but if you like it and decide to continue using it, or if you add
  220. it to your AUTOEXEC.BAT, then you must register it at a cost of $30 per
  221. computer.
  222.  
  223.  
  224.  
  225. REGISTRATION
  226. ------------
  227.  
  228. Register by sending $30 per computer to:
  229.  
  230.     CTMAP 0.95 registration
  231.     Burton Systems Software
  232.     P.O.Box 4156, Cary, NC 27519  USA
  233.  
  234. Please include the following:
  235.  
  236.   Your full name, your company (if any), your telephone number(s), your
  237.   mailing address (including country), the number of computers you are
  238.   registering for use of CTMAP 0.95, the brands and models of your
  239.   computers & your version of DOS, and your payment of $30 US (or $40
  240.   Canadian) per computer.  Also, please answer the questions:  "Are you
  241.   a programmer?  In what computer languages?"
  242.  
  243. Payment should be by check or money order on a US or Canadian bank, or
  244. by Visa, MasterCard or EuroCard charge.  If paying by credit card, please
  245. be sure to include your credit card number, expiration date, type of card
  246. (Visa or MC), and the name on the card; and please sign your letter.  Or,
  247. with a credit card, you can register by telephone or FAX.  Call us at
  248. (919) 856-0475 (if you are using a FAX, we will transfer your call to the
  249. FAX machine upon request; after hours, you can use a touch-tone telephone
  250. to make our Voice Mail system transfer your call).
  251.  
  252.  
  253. DISTRIBUTION
  254. ------------
  255.  
  256. You are encouraged to give copies of this software to your friends and
  257. colleagues for trial on their computers.  You are free to "upload" this
  258. software to any computer bulletin board system (BBS).  You may charge
  259. recipients of this software a fee of no more than $6 US plus the cost
  260. of the distribution media, provided that purchasers are forewarned that
  261. continued use requires registration with Burton, and that registration
  262. costs $30. However, under no circumstances may "patched" or otherwise
  263. modified copies of this software be distributed without prior written
  264. permission from Burton.
  265.  
  266. Manufacturers and distributors of computer equipment should contact
  267. Burton to purchase distribution licenses for customized versions of this
  268. software.
  269.  
  270.  
  271. DISCLAIMER OF WARRANTY
  272. ----------------------
  273.  
  274. No warranty is expressed or implied.  Use this software at your own risk.
  275. However, if you encounter problems, or if you have suggestions for
  276. improvement, we would like to hear from you.
  277.  
  278.  
  279. WHO ARE WE?
  280. -----------
  281.  
  282. Burton Systems Software is a commercial software development company
  283. located in Raleigh, North Carolina.  We specialize in systems software
  284. and software development tools for programmers.  We are best known for our
  285. TLIB (tm) Version Control System for MS-DOS (and soon for OS/2).  TLIB is
  286. the fastest, most powerful, and easiest to use version control software
  287. available for PCs.  It elegantly solves many of the headaches attendant
  288. to software development.  But don't take our word for it - give us a call,
  289. and we'll gladly send you more information, including a long list of
  290. quotes from enthusiastic magazine reviewers.  Or try it out - TLIB comes
  291. with a full 90 day warranty (unlike CTMAP!).  Our telephone number is
  292. (919) 856-0475.
  293.  
  294.  
  295. BONUS!
  296. ------
  297.  
  298. When you register CTMAP, you'll receive a coupon worth $30 off the price
  299. of a TLIB Version Control System.  You may also receive an updated
  300. version of CTMAP (at our option), if we have improved it significantly
  301. since 3-Feb-90.
  302.  
  303. Note to TLIB customers: if you got CTMAP with TLIB, you can register for
  304. free - sort of a pre-redeemed coupon.  Just mention your TLIB serial
  305. number in a letter which says "I'm using CTMAP; please register me."
  306.  
  307.