CodeView (cv.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Compare Memory (Example)
 Summary Description Notes             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
          >C 100 1FF 300 ;* hexadecimal radix assumed
          39BB:0102 0A 00 39BB:0302
          39BB:0108 0A 01 39BB:0308
          >
 
     The example above compares the block of memory from 100 to 1FF
     with the block of memory from 300 to 3FF; it indicates that the
     third and ninth bytes differ in the two areas of memory.
     Hexadecimal is assumed to be the default radix.
 
          >C arr1[0] L 100 arr2[0]
          >
 
     The example above compares the 100 bytes starting at the address
     of arr1[0] with the 100 bytes starting at the address of arr2[0].
     CodeView produces no output in response; therefore, the first 100
     bytes of each array are identical.
                                    -♦-