DOCERR: Example in MASM 5.1 Programmer's Guide (39518)



The information in this article applies to:

  • Microsoft Macro Assembler (MASM) 5.1
  • Microsoft Macro Assembler (MASM) 5.1a

This article was previously published under Q39518

SUMMARY

There are a number of errors in example 2 on Page 90 of the "Microsoft Macro Assembler 5.1 Programmer's Guide."

The following lines from the example
   EXTR    xvariable:FAR

   EXTR    xprocedure:PROC
				
should be as follows:
   EXTRN   xvariable:FAR

   EXTRN   xprocedure:PROC
				

Modification Type:MajorLast Reviewed:10/17/2003
Keywords:KB39518