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.
Add Watch Expression (Example)
 Summary Description                     Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
          W? n
 
     The example above displays the current value of the variable n in
     the watch window.
 
          W? higher * 100
 
     The example above displays the value of the expression
     higher * 100 in the watch window.
 
          W? (char *) 0
 
     The example above displays the byte at offset 0 from the segment
     contained in DS. Because 0 is explicitly cast to a pointer type,
     the command treats it as an offset rather than a constant.
                                    -♦-