CodeView (cv.hlp) (Table of Contents; Topic list)
Assemble (Example)
 Summary Description Notes             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
          >U 0x40 L 1
          39B0:0040 89C3   MOV  BX,AX
 
          >A 0x40
          39B0:0040 MOV  CX,AX
          39B0:0042
 
          >U 0x40 L 1
          39B0:0040 89C1   MOV  CX,AX
 
          >
 
     The example above modifies the instruction at address 40
     hexadecimal so that it moves data into the CX register instead
     of the BX register. The Unassemble (U) command is used to show
     the instruction before and after the assembly.
 
     You can modify a portion of code for testing, as in the example,
     but you cannot save the modified program. You must modify your
     source code and recompile.
                                    -♦-