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.
CodeView Error
     Expression not a memory address (CV1050)
 
     The expression entered does not evaluate to an address. An address
     must be a numeric value.
 
     An lvalue (so called because it appears on the left side of an
     assignment statement) is an expression that refers to a memory
     location.
 
     For example, buffer[count] is a valid lvalue because it points to
     a specific memory location. The logical comparison zed != 0 is not
     a valid lvalue because it evaluates to TRUE or FALSE, not a memory
     address.
                                    -♦-