home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 March / PCWorld_2003-03_cd.bin / Software / Vyzkuste / memtest / memt30.exe / memt86 / README.txt < prev   
Text File  |  2002-05-21  |  33KB  |  790 lines

  1.             ===================
  2.             = MemTest-86 v3.0 =
  3.             ===================
  4.  
  5. Table of Contents
  6. =================
  7.   1) Introduction
  8.   2) Licensing
  9.   3) Installation
  10.   4) Serial Port Console
  11.   5) Online Commands
  12.   6) Memory Sizing
  13.   7) Error Display
  14.   8) Trouble-shooting Memory Errors
  15.   9) Execution Time
  16.  10) Memory Testing Philosophy
  17.  11) Memtest86 Test Algorithms
  18.  12) Individual Test Descriptions
  19.  13) Problem Reporting - Contact Information
  20.  14) Known Problems
  21.  15) Planned Features List
  22.  16) Change Log
  23.  17) Acknowledgments
  24.  
  25.  
  26. 1) Introduction
  27. ===============
  28. Memtest86 is thorough, stand alone memory test for Intel i386 architecture
  29. systems.  BIOS based memory tests are only a quick check and often miss
  30. failures that are detected by Memtest86.
  31.  
  32. For updates go to the Memtest86 web page:
  33.  
  34.     http://www.memtest86.com
  35.  
  36. To report problems or provide feedback send email to:
  37.  
  38.     cbrady@cray.com
  39.  
  40.  
  41. 2) Licensing
  42. ============
  43. Memtest86 is released under the terms of the Gnu Public License (GPL). Other
  44. than the provisions of the GPL there are no restrictions for use, private or
  45. commercial.  See: http://www.gnu.org/licenses/gpl.html for details.
  46.  
  47.  
  48. 3) Installation
  49. ===============
  50. Memtest86 is a stand alone program that cannot be executed under windows and must
  51. be loaded from a floppy disk.
  52.  
  53. To install Memtest86:
  54. - Extract the files from the zip archive
  55. - Open the directory where the files were extracted and click on "install.bat".
  56. - The install program will prompt you for the floppy drive and also prompt you to
  57.   insert a blank floppy.
  58. - To run Memtest86 leave the floppy in the drive and reboot.
  59.  
  60. NOTE: After the boot floppy has been created you will not be able to read the floppy
  61. from windows.  This is normal.
  62.  
  63.  
  64. 4) Serial Console
  65. =================
  66. Memtest86 can be used on PC's equipped with a serial port for the console.
  67. By default serial port console support is not enabled since it slows
  68. down testing.  To enable change the SERIAL_CONSOLE_DEFAULT define in
  69. config.h from a zero to a one.  The serial console baud rate may also
  70. be set in config.h with the SERIAL_BAUD_RATE define.  The other serial
  71. port settings are no parity, 8 data bits, 1 stop bit.  All of the features
  72. used by memtest86 are accessible via the serial console.  However, the
  73. screen sometimes is garbled when the online commands are used.
  74.  
  75.  
  76. 5) Online Commands
  77. ==================
  78. Memtest86 has a limited number of online commands.  Online commands
  79. provide control over caching, test selection, address range and error
  80. scrolling.  A help bar is displayed at the bottom of the screen listing
  81. the available on-line commands. 
  82.  
  83.   Command  Description
  84.  
  85.   ESC   Exits the test and does a warm restart via the BIOS.
  86.  
  87.   c     Enters test configuration menu
  88.         Menu options are:
  89.                1) Cache mode
  90.                2) Test selection
  91.            3) Address Range
  92.            4) Memory Sizing
  93.            5) Error Summary
  94.            6) Error Report Mode 
  95.            7) ECC Mode
  96.            8) Restart Test
  97.            9) Reprint Screen
  98.  
  99.   SP    Set scroll lock (Stops scrolling of error messages)
  100.     Note: Testing is stalled when the scroll lock is
  101.     set and the scroll region is full.
  102.  
  103.   CR    Clear scroll lock (Enables error message scrolling)
  104.  
  105.  
  106. 6) Memory Sizing
  107. ================
  108. The BIOS in modern PC's will often reserve several sections of memory for
  109. it's use and also to communicate information to the operating system (ie.
  110. ACPI tables).  It is just as important to test these reserved memory blocks
  111. as it is for the remainder of memory.  For proper operation all of memory
  112. needs to function properly regardless of what the eventual use is.  For
  113. this reason Memtest86 has been designed to test as much memory as is
  114. possible.
  115.  
  116. However, safely and reliably detecting all of the available memory has been
  117. problematic.  Versions of Memtest86 prior to v2.9 would probe to find where
  118. memory is. This works for the vast majority of motherboards but is not 100%
  119. reliable. Sometimes the memory size is incorrect and worse probing the wrong
  120. places can in some cases cause the test to hang or crash.  
  121.  
  122. Starting in version 2.9 alternative methods are available for determining the
  123. memory size. By default the test attempts to get the memory size from the
  124. BIOS using the "e820" method.  With "e820" the BIOS provides a table of memory
  125. segments and identifies what they will be used for.  By default Memtest86
  126. will test all of the ram marked as available and also the area reserved for
  127. the ACPI tables.  This is safe since the test does not use the ACPI tables
  128. and the "e820" specifications state that this memory may be reused after the
  129. tables have been copied.  Although this is a safe default some memory will
  130. not be tested.
  131.  
  132. Two additional options are available through online configuration options.
  133. The first option (BIOS-All) also uses the "e820" method to obtain a memory
  134. map.  However, when this option is selected all of the reserved memory
  135. segments are tested, regardless of what their intended use is.  The only
  136. exception is memory segments that begin above 3gb.  Testing has shown that
  137. these segments are typically not safe to test.  The BIOS-All option is more
  138. thorough but could be unstable with some motherboards.
  139.  
  140. The second option for memory sizing is the traditional "Probe" method.
  141. This is a very thorough but not entirely safe method.  In the majority of
  142. cases the BIOS-All and Probe methods will return the same memory map.
  143.  
  144. For older BIOS's that do not support the "e820" method there are two
  145. additional methods (e801 and e88) for getting the memory size from the
  146. BIOS.  These methods only provide the amount of extended memory that is
  147. available, not a memory table.  When the e801 and e88 methods are used
  148. the BIOS-All option will not be available.
  149.  
  150. The MemMap field on the display shows what memory size method is in use.
  151. Also the RsvdMem field shows how much memory is reserved and is not being
  152. tested.
  153.  
  154.  
  155. 7) Error Information
  156. ======================
  157. Memtest has two options for reporting errors.  The default is to report
  158. individual errors.  In BadRAM Patterns mode patterns are created for
  159. use with the Linux BadRAM feature.  This slick feature allows Linux to
  160. avoid bad memory pages.  Details about the BadRAM feature can be found at:
  161.  
  162.     http://home.zonnet.nl/vanrein/badram
  163.  
  164. For individual errors the following information is displayed when a memory
  165. error is detected.  An error message is only displayed for errors with a
  166. different address or failing bit pattern.  All displayed values are in
  167. hexadecimal.
  168.  
  169.   Tst:            Test number
  170.   Failing Address :    Failing memory address 
  171.   Good:            Expected data pattern 
  172.   Bad:            Failing data pattern 
  173.   Err-Bits:        Exclusive or of good and bad data (this shows the
  174.             position of the failing bit(s))
  175.   Count:        Number of consecutive errors with the same address
  176.             and failing bits
  177.  
  178. In BadRAM Patterns mode, Lines are printed in a form badram=F1,M1,F2,M2.
  179. In each F/M pair, the F represents a fault address, and the corresponding M
  180. is a bitmask for that address. These patterns state that faults have
  181. occurred in addresses that equal F on all "1" bits in M. Such a pattern may
  182. capture more errors that actually exist, but at least all the errors are
  183. captured. These patterns have been designed to capture regular patterns of
  184. errors caused by the hardware structure in a terse syntax.
  185.  
  186. The BadRAM patterns are `grown' increment-ally rather than `designed' from an
  187. overview of all errors. The number of pairs is constrained to five for a
  188. number of practical reasons. As a result, handcrafting patterns from the
  189. output in address printing mode may, in exceptional cases, yield better
  190. results.
  191.  
  192.  
  193. 8) Trouble-shooting Memory Errors
  194. ================================
  195. Please be aware that not all errors reported by Memtest86 are due to
  196. bad memory. The test implicitly tests the CPU, L1 and L2 caches as well as
  197. the motherboard.  It is impossible for the test to determine what causes
  198. the failure to occur.  Most failures will be due to a problem with memory.
  199. When it is not, the only option is to replace parts until the failure is
  200. corrected.  
  201.  
  202. Once a memory error has been detected, determining the failing SIMM/DIMM
  203. module is not a clear cut procedure.  With the large number of motherboard
  204. vendors and possible combinations of simm slots it would be difficult if
  205. not impossible to assemble complete information about how a particular
  206. error would map to a failing memory module.  However, there are steps
  207. that may be taken to determine the failing module.  Here are three
  208. techniques that you may wish to use:
  209.  
  210. 1) Removing modules
  211. This is simplest method for isolating a failing modules, but may only be
  212. employed when one or more modules can be removed from the system.  By
  213. selectively removing modules from the system and then running the test
  214. you will be able to find the bad module(s).  Be sure to note exactly which
  215. modules are in the system when the test passes and when the test fails.
  216.  
  217. 2) Rotating modules
  218. When none of the modules can be removed then you may wish to rotate modules
  219. to find the failing one.  This technique can only be used if there are
  220. three or more modules in the system.  Change the location of two modules
  221. at a time.  For example put the module from slot 1 into slot 2 and put
  222. the module from slot 2 in slot 1.  Run the test and if either the failing
  223. bit or address changes then you know that the failing module is one of the
  224. ones just moved. By using several combinations of module movement you
  225. should be able to determine which module is failing.
  226.  
  227. 3) Replacing modules
  228. If you are unable to use either of the previous techniques then you are
  229. left to selective replacement of modules to find the failure.  
  230.  
  231. 4) Avoiding allocation
  232. The printing mode for BadRAM patterns is intended to construct boot time
  233. parameters for a Linux kernel that is compiled with BadRAM support. This
  234. work-around makes it possible for Linux to reliably run on your average damaged
  235. RAM (or clearly panic if it cannot).  For more information on BadRAM support
  236. for Linux, sail to
  237.  
  238.        http://home.zonnet.nl/vanrein/badram
  239.  
  240. Sometimes memory errors show up due to component incompatibility.  A memory
  241. DIMM/SIMM may work fine in one system and not in another.  This is not
  242. uncommon and is a source of confusion.  The components are not necessarily
  243. bad but certain combinations may need to be avoided.
  244.  
  245. I am often asked about the reliability of errors reported by Mestest86.
  246. In the vast majority of cases errors reported by the test are valid.
  247. There are some systems that cause Memtest86 to be confused about the size of
  248. memory and it will try to test non-existent memory.  This will cause a large
  249. number of consecutive addresses to be reported as bad and generally there
  250. will be many bits in error.  If you have a relatively small number of
  251. failing addresses and only one or two bits in error you can be certain
  252. that the errors are valid.  Also intermittent errors are always valid.
  253.  
  254. All valid memory errors should be corrected.  It is possible that a
  255. particular error will never show up in normal operation. However, operating
  256. with marginal memory is risky and can result in data loss and even
  257. disk corruption.  You can be sure that Murphy will get you if you know
  258. about a memory error and ignore it.
  259.  
  260. Memtest86 can not diagnose many types of PC failures.  For example a
  261. faulty CPU that causes Windows to crash will most likely just cause
  262. Memtest86 to crash in the same way.
  263.  
  264.  
  265. 9) Execution Time
  266. ==================
  267. The time required for a complete pass of Memtest86 will vary greatly
  268. depending on CPU speed, memory speed and memory size.  Here are the
  269. execution times from a Cleron-366 with 64MB of SDRAM:
  270.  
  271.   Test 0:     0:05
  272.   Test 1:     0:18
  273.   Test 2:     1:02
  274.   Test 3:     1:38
  275.   Test 4:     8:05
  276.   Test 5:     1:40
  277.   Test 6:     4:24
  278.   Test 7:     6:04
  279.  
  280.   Total Time for Default tests:  23:16
  281.  
  282.   Test 8:     12:30
  283.   Test 9:     49:30
  284.   Test 10:    30:34
  285.   Test 11:  3:29:40
  286.  
  287.   Total Time for All tests:  5:25:30
  288.  
  289.  
  290. 10) Memory Testing Philosophy
  291. ============================
  292. There are many good approaches for testing memory.  However, many tests
  293. simply throw some patterns at memory without much thought or knowledge
  294. of the memory architecture or how errors can best be detected. This
  295. works fine for hard memory failures but does little to find intermittent
  296. errors.  The BIOS based memory tests are useless for finding intermittent
  297. memory errors.
  298.  
  299. Memory chips consist of a large array of tightly packed memory cells,
  300. one for each bit of data.  The vast majority of the intermittent failures
  301. are a result of interaction between these memory cells.  Often writing a
  302. memory cell can cause one of the adjacent cells to be written with the
  303. same data.  An effective memory test should attempt to test for this
  304. condition.  Therefore, an ideal strategy for testing memory would be
  305. the following:
  306.  
  307.   1) write a cell with a zero
  308.   2) write all of the adjacent cells with a one, one or more times
  309.   3) check that the first cell still has a zero
  310.  
  311. It should be obvious that this strategy requires an exact knowledge
  312. of how the memory cells are laid out on the chip.  In addition there is a
  313. never ending number of possible chip layouts for different chip types
  314. and manufacturers making this strategy impractical.  However, there
  315. are testing algorithms that can approximate this ideal strategy. 
  316.  
  317.  
  318. 11) Memtest86 Test Algorithms
  319. ============================
  320. Memtest86 uses two algorithms that provide a reasonable approximation
  321. of the ideal test strategy above.  The first of these strategies is called
  322. moving inversions.  The moving inversion test works as follows:
  323.  
  324.   1) Fill memory with a pattern
  325.   2) Starting at the lowest address
  326.     2a check that the pattern has not changed
  327.     2b write the patterns complement
  328.     2c increment the address
  329.     repeat 2a - 2c
  330.   3) Starting at the highest address
  331.     3a check that the pattern has not changed
  332.     3b write the patterns complement
  333.     3c decrement the address
  334.     repeat 3a - 3c
  335.  
  336. This this algorithm is a good approximation of an ideal memory test but
  337. there are some limitations.  Most high density chips today store data
  338. 4 to 16 bits wide.  With chips that are more than one bit wide it
  339. is impossible to selectively read or write just one bit.  This means
  340. that we cannot guarantee that all adjacent cells have been tested
  341. for interaction.  In this case the best we can do is to use some
  342. patterns to insure that all adjacent cells have at least been written
  343. with all possible one and zero combinations.
  344.  
  345. It can also be seen that caching, buffering and out of order execution
  346. will interfere with the moving inversions algorithm and make less effective.
  347. It is possible to turn off cache but the memory buffering in new high
  348. performance chips can not be disabled.  To address this limitation a new
  349. algorithm I call Modulo-X was created.  This algorithm is not affected by
  350. cache or buffering.  The algorithm works as follows:
  351.   1) For starting offsets of 0 - 20 do
  352.     1a write every 20th location with a pattern
  353.     1b write all other locations with the patterns complement
  354.        repeat 1b one or more times
  355.     1c check every 20th location for the pattern
  356.  
  357. This algorithm accomplishes nearly the same level of adjacency testing
  358. as moving inversions but is not affected by caching or buffering.  Since
  359. separate write passes (1a, 1b) and the read pass (1c) are done for all of
  360. memory we can be assured that all of the buffers and cache have been
  361. flushed between passes.  The selection of 20 as the stride size was somewhat
  362. arbitrary.  Larger strides may be more effective but would take longer to
  363. execute.  The choice of 20 seemed to be a reasonable compromise between
  364. speed and thoroughness.
  365.  
  366.  
  367. 12) Individual Test Descriptions
  368. ===============================
  369. Memtest86 executes a series of numbered test sections to check for
  370. errors.  These test sections consist of a combination of test
  371. algorithm, data pattern and caching. The execution order for these tests
  372. were arranged so that errors will be detected as rapidly as possible.
  373. Tests 8, 9, 10 and 11 are very long running extended tests and are only
  374. executed when extended testing is selected.  The extended tests have a
  375. low probability of finding errors that were missed by the default tests.
  376. A description of each of the test sections follows:
  377.  
  378. Test 0 [Address test, walking ones, no cache]
  379.   Tests all address bits in all memory banks by using a walking ones
  380.   address pattern.  Errors from this test are not used to calculate
  381.   BadRAM patterns.
  382.  
  383. Test 1 [Moving Inv, ones&zeros, cached]
  384.   This test uses the moving inversions algorithm with patterns of only
  385.   ones and zeros.  Cache is enabled even though it interferes to some
  386.   degree with the test algorithm.  With cache enabled this test does not
  387.   take long and should quickly find all "hard" errors and some more
  388.   subtle errors.  This section is only a quick check.
  389.  
  390. Test 2 [Address test, own address, no cache]
  391.   Each address is written with its own address and then is checked
  392.   for consistency.  In theory previous tests should have caught any
  393.   memory addressing problems.  This test should catch any addressing
  394.   errors that somehow were not previously detected.
  395.  
  396. Test 3 [Moving inv, 8 bit pat, cached]
  397.   This is the same as test zero but uses a 8 bit wide pattern of
  398.   "walking" ones and zeros.  This test will better detect subtle errors
  399.   in "wide" memory chips.  A total of 20 data patterns are used.
  400.   
  401. Test 4 [Moving inv, 32 bit pat, cached]
  402.   This is a variation of the moving inversions algorithm that
  403.   shifts the data pattern left one bit for each successive address.
  404.   The starting bit position is shifted left for each pass.  To use
  405.   all possible data patterns 32 passes are required.  This test is
  406.   very effective at detecting data sensitive errors in "wide" memory
  407.   chips.
  408.  
  409. Test 5 [Block move, 64 moves, cached]
  410.   This test stresses memory by using block move (movsl) instructions
  411.   and is based on Robert Redelmeier's burnBX test.  Memory is initialized
  412.   with shifting patterns that are inverted every 8 bytes.  Then 4MB blocks
  413.   of memory are moved around using the movsl instruction.  After the moves
  414.   are completed the data patterns are checked.  Because the data is checked
  415.   only after the memory moves are completed it is not possible to know
  416.   where the error occurred.  The addresses reported are only for where the
  417.   bad pattern was found.  Since the moves are constrained to a 8MB segment
  418.   of memory the failing address will always be lest than 8MB away from the
  419.   reported address.  Errors from this test are not used to calculate
  420.   BadRAM patterns.
  421.  
  422. Test 6 [Modulo 20, ones&zeros, cached]
  423.   Using the Modulo-X algorithm should uncover errors that are not
  424.   detected by moving inversions due to cache and buffering interference
  425.   with the the algorithm.  As with test one only ones and zeros are
  426.   used for data patterns.
  427.  
  428. Test 7 [Moving inv, ones&zeros, no cache]
  429.   This is the same as test one but without cache.  With cache off
  430.   there will be much less interference with the test algorithm.
  431.   However, the execution time is much, much longer.  This test may
  432.   find very subtle errors missed by tests one and two.
  433.  
  434. Test 8 [Block move, 512 moves, cached]
  435.   This is the same as test #5 except that we do a lot more memory moves
  436.   before checking memory. Errors from this test are not used to calculate
  437.   BadRAM patterns.
  438.  
  439. Test 9 [Moving inv, 8 bit pat, no cache]
  440.   This is the first extended test.  By using an 8 bit pattern with
  441.   cache off this test should be effective in detecting all types of
  442.   errors.  However, it takes a very long time to execute and there is
  443.   a low probability that it will detect errors not found by the previous
  444.   tests.
  445.  
  446. Test 10 [Modulo 20, 8 bit, cached]
  447.   This is the first test to use the modulo 20 algorithm with a data
  448.   pattern other than ones and zeros.  This combination of algorithm and
  449.   data pattern should be quite effective.  However, it's very long
  450.   execution time relegates it to the extended test section.
  451.  
  452. Test 11 [Moving inv, 32 bit pat, no cache]
  453.   This test should be the most effective in finding errors that are
  454.   data pattern sensitive.  However, without cache it's execution time
  455.   is excessively long.
  456.  
  457.  
  458. 13) Problem Reporting - Contact Information
  459. ===========================================
  460. Due to the growing popularity of Memtest86 I am being inundated by,
  461. questions, feedback, problem reports and requests for enhancements.
  462. Memtest86 is a side project and often my day job interferes with Memtest86
  463. support.  To help me keep up with this project, please use the following
  464. guidelines.
  465.  
  466. Problems/Bugs:
  467. Before submitting a problem report please check the Known Problems section
  468. to see if this problem has already been reported.  Be sure to include the
  469. version number and also any details that may be relevant.
  470.  
  471. Memtest86 sometimes just dies with no hints as to what went wrong.
  472. Without any details it is nearly impossible to fix these failures.  Fixing
  473. these problems will require debugging assistance on your part.  There is
  474. no point in reporting these failures unless you have a Linux system and
  475. would be willing to assist me in finding the failure.
  476.  
  477. Enhancements:
  478. If you would like to request an enhancement please see if is already on
  479. the Planned Features List before sending your request.  All requests will
  480. be considered, but not all can be implemented.  If you are be interested in
  481. contributing code please contact me so that the integration can be
  482. co-ordinated.
  483.  
  484. Feedback:
  485. I have received a lot of feedback about the effectiveness of various
  486. tests.  I am still interested in hearing about failures that only a single
  487. test was able to detect.  Of course, gratitude, praise and cash are always
  488. accepted.
  489.  
  490. Chris Brady, Email: cbrady@cray.com
  491.  
  492.  
  493. 14) Known Problems
  494. ==================
  495. Sometimes when booting from a floppy disk the following messages scroll up
  496. on the screen:
  497.         X:8000
  498.         AX:0212
  499.         BX:8600
  500.         CX:0201
  501.         DX:0000
  502. This the BIOS reporting floppy disk read errors.  Either re-write or toss
  503. the floppy disk.
  504.  
  505. Memtest86 has no support for multiple CPUs.  Memtest86 should run
  506. without problems, but it will only use one CPU.
  507.  
  508. Memtest86 can not diagnose many types of PC failures.  For example a
  509. faulty CPU that causes Windows to crash will most likely just cause
  510. Memtest86 to crash in the same way.
  511.  
  512. There have been numerous reports of errors in only tests 5 and 8 on Athlon
  513. systems.  Often the memory works in a different system or the vendor insists
  514. that it is good.  In these cases the memory is not necessarily bad but is
  515. not able to operate reliably at Athlon speeds.  Sometimes more conservative
  516. memory timings on the motherboard will correct these errors.  In other
  517. cases the only option is to replace the memory with better quality, higher
  518. speed memory.  Don't buy cheap memory and expect it to work with an Athlon!
  519.  
  520. Memtest86 supports all types of memory.  If fact the test has absolutely
  521. no knowledge of the memory type nor does it need to.  This not a problem
  522. or bug but is listed here due to the many questions I get about this issue.
  523.  
  524. Changes in the compiler and loader have caused problems with
  525. Memtest86 resulting in both build failures and errors in execution.  A
  526. binary image (precomp.bin) of the test is included and may be used if
  527. problems are encountered.
  528.  
  529. 15) Planned Features List
  530. =========================
  531. This is a list of enhancements planned for future releases of Memtest86.
  532. There is no timetable for when these will be implemented, if ever.
  533.  
  534.   - Option to allow printing of error information on an attached printer.
  535.   - Option to write error information to a floppy disk.
  536.   - Supply Memtest in RPM format.
  537.   - Read and display RAM SPD information.
  538.  
  539.  
  540. 16) Change Log
  541. ==============
  542. Enhancements in v3.0 (22/May/2002) Provided by Eric Biederman
  543.  
  544.    Testing of more than 2gb of memory is at last fixed (tested with 6Gb)
  545.  
  546.    The infrastructure is to poll ecc error reporting chipset regisets,
  547.    and the support has been done for some chipsets.
  548.  
  549.    Uses dynamic relocation information records to make itself PIC
  550.    instead of requiring 2 copies of memtest86 in the binary.
  551.  
  552.    The serial console code does not do redundant writes to the serial port
  553.    Very little slow down at 9600 baud.
  554.  
  555.    You can press ^l or just l to get a screen refresh, when you are
  556.    connecting and unconnecting a serial cable.
  557.  
  558.    Netbooting is working again
  559.  
  560.    LinuxBIOS support (To get the memory size)
  561.  
  562.    Many bugfixes and code cleanup.
  563.  
  564. Enhancements in v2.9 (29/Feb/2002)
  565.  
  566.    The memory sizing code has been completely rewritten.  By default
  567.    Memtest86 gets a memory map from the BIOS that is now used to find 
  568.    available memory. A new online configuration option provides three
  569.    choices for how memory will be sized, including the old "probe" method.
  570.    The default mode generally will not test all of memory, but should be more
  571.    stable. See the "Memory Sizing" section for details.
  572.  
  573.    Testing of more than 2gb of memory should now work.  A number of bugs
  574.    were found and corrected that prevented testing above 2gb.  Testing
  575.    with more than 2gb has been limited and there could be problems with a
  576.    full 4gb of memory.
  577.  
  578.    Memory is divided into segments for testing.  This allow for frequent
  579.    progress updates and responsiveness to interactive commands.  The
  580.    memory segment size has been increased from 8 to 32mb.  This should
  581.    improve testing effectivness but progress reports will be less frequent.
  582.  
  583.    Minor bug fixes.
  584.  
  585. Enhancements in v2.8 (18/Oct/2001)
  586.    Eric Biederman reworked the build process making it far simpler and also
  587.    to produce a network bootable ELF image.
  588.  
  589.    Re-wrote the memory and cache speed detection code.  Previously the
  590.    reported numbers were inaccurate for intel CPU's and completely wrong
  591.    for Athlon/Duron CPU's.
  592.  
  593.    By default the serial console is disabled since this was slowing
  594.    down testing.
  595.  
  596.    Added CPU detection for Pentium 4.
  597.  
  598.    
  599. Enhancements in v2.7 (12/Jul/2001)
  600.    Expanded workaround for errors caused by BIOS USB keyboard support to
  601.    include test #5.
  602.  
  603.    Re-worked L1 / L2 cache detection code to provide clearer reporting.
  604.  
  605.    Fixed an obvious bug in the computation of cache and memory speeds.
  606.  
  607.    Changed on-line menu to stay in the menu between option selections.
  608.  
  609.    Fixed bugs in the test restart and redraw code.
  610.  
  611.    Adjusted code size to fix compilation problems with RedHat 7.1.
  612.  
  613.    Misc updates to the documentation.
  614.  
  615. Enhancements in v2.6 (25/May/2001)
  616.    Added workaround for errors caused by BIOS USB keyboard support.
  617.  
  618.    Fixed problems with reporting of 1 GHZ + processor speeds.
  619.  
  620.    Fixed Duron cache detection.
  621.  
  622.    Added screen buffer so that menus will work correctly from a serial
  623.    console.
  624.  
  625.    The Memtest86 image is now built in ELF format.
  626.  
  627. Enhancements in v2.5 (14/Dec/00)
  628.    Enhanced CPU and cache detection to correctly identify Duron CPU
  629.    and K6-III 1MB cache.
  630.  
  631.    Added code to report cache-able memory size.
  632.  
  633.    Added limited support for parity memory.
  634.  
  635.    Support was added to allow use of on-line commands from a serial
  636.    port.
  637.  
  638.    Dropped option for changing refresh rates.  This was not useful
  639.    and did not work on newer motherboards.
  640.  
  641.    Improved fatal exception reporting to include a register and stack
  642.    dump.
  643.  
  644.    The pass number is now displayed in the error report.
  645.  
  646.    Fixed a bug that crashed the test when selecting one of the extended
  647.    tests.
  648.  
  649. Enhancements in v2.4
  650.    The error report format was reworked for better clarity and now
  651.    includes a decimal address in megabytes.
  652.  
  653.    A new memory move test was added (from Robert Redelmeier's CPU-Burn)
  654.  
  655.    The test sequence and iterations were modified.
  656.  
  657.    Fixed scrolling problems with the BadRAM patterns.
  658.  
  659.  
  660. Enhancements in v2.3
  661.    A progress meter was added to replace the spinner and dots.
  662.  
  663.    Measurement and reporting of memory and cache performance  
  664.    was added.
  665.  
  666.    Support for creating BadRAM patterns was added.
  667.  
  668.    All of the test routines were rewritten in assembler to
  669.    improve both test performance and speed.
  670.  
  671.    The screen layout was reworked to hopefully be more readable.
  672.  
  673.    An error summary option was added to the online commands.
  674.  
  675.  
  676. Enhancements in v2.2
  677.    Added two new address tests
  678.  
  679.    Added an on-line command for setting test address range
  680.  
  681.    Optimized test code for faster execution (-O3, -funroll-loops and
  682.     -fomit-frame-pointer)
  683.  
  684.    Added and elapsed time counter.
  685.  
  686.    Adjusted menu options for better consistency
  687.  
  688.  
  689. Enhancements in v2.1
  690.    Fixed a bug in the CPU detection that caused the test to
  691.    hang or crash with some 486 and Cryrix CPU's
  692.  
  693.    Added CPU detection for Cyrix CPU's
  694.  
  695.    Extended and improved CPU detection for Intel and AMD CPU's
  696.  
  697.    Added a compile time option (BIOS_MEMSZ) for obtaining the last
  698.    memory address from the BIOS.  This should fix problems with memory
  699.    sizing on certain motherboards.  This option is not enabled by default.
  700.    It may be enabled be default in a future release.
  701.  
  702. Enhancements in v2.0
  703.    Added new Modulo-20 test algorithm.
  704.  
  705.    Added a 32 bit shifting pattern to the moving inversions algorithm.
  706.  
  707.    Created test sections to specify algorithm, pattern and caching.
  708.  
  709.    Improved test progress indicators.
  710.  
  711.    Created  popup menus for configuration.
  712.  
  713.    Added menu for test selection.
  714.  
  715.    Added CPU and cache identification.
  716.  
  717.    Added a "bail out" feature to quit the current test when it does not
  718.    fit the test selection parameters.
  719.  
  720.    Re-arranged the screen layout and colors.
  721.  
  722.    Created local include files for I/O and serial interface definitions
  723.    rather than using the sometimes incompatible system include files. 
  724.  
  725.    Broke up the "C" source code into four separate source modules.
  726.  
  727. Enhancements in v1.5
  728.    Some additional changes were made to fix obscure memory sizing
  729.    problems.
  730.  
  731.    The 4 bit wide data pattern was increased to 8 bits since 8 bit
  732.    wide memory chips are becoming more common.
  733.  
  734.    A new test algorithm was added to improve detection of data
  735.    pattern sensitive errors. 
  736.  
  737.  
  738. Enhancements in v1.4
  739.    Changes to the memory sizing code to avoid problems with some
  740.    motherboards where memtest would find more memory than actually
  741.    exists.
  742.  
  743.    Added support for a console serial port. (thanks to Doug Sisk)
  744.  
  745.    On-line commands are now available for configuring Memtest86 on
  746.    the fly (see On-line Commands).
  747.     
  748.  
  749. Enhancements in v1.3
  750.    Scrolling of memory errors is now provided.  Previously, only one screen
  751.    of error information was displayed.
  752.  
  753.    Memtest86 can now be booted from any disk via lilo.
  754.  
  755.    Testing of up to 4gb of memory has been fixed is now enabled by default.
  756.    This capability was clearly broken in v1.2a and should work correctly
  757.    now but has not been fully tested (4gb PC's are a bit rare).
  758.  
  759.    The maximum memory size supported by the motherboard is now being
  760.    calculated correctly.  In previous versions there were cases where not
  761.    all of memory would be tested and the maximum memory size supported
  762.    was incorrect.
  763.  
  764.    For some types of failures the good and bad values were reported to be
  765.    same with an Xor value of 0.  This has been fixed by retaining the data
  766.    read from memory and not re-reading the bad data in the error reporting
  767.    routine.
  768.  
  769.    APM (advanced power management) is now disabled by Memtest86.  This
  770.    keeps the screen from blanking while the test is running.
  771.  
  772.    Problems with enabling & disabling cache on some motherboards have been
  773.    corrected.
  774.  
  775. 17) Acknowledgments
  776. ===================
  777. The initial versions of the source files bootsect.S, setup.S, head.S and
  778. build.c are from the Linux 1.2.1 kernel and have been heavily modified.
  779.  
  780. Doug Sisk provided code to support a console connected via a serial port.
  781.  
  782. Code to create BadRAM patterns was provided by Rick van Rein.
  783.  
  784. Tests 5 and 8 are based on Robert Redelmeier's burnBX test.
  785.  
  786. Screen buffer code was provided by Jani Averbach.
  787.  
  788. Eric Biederman provided all of the feature content for version 3.0
  789. plus many bugfixes and significant code cleanup.
  790.