Startup MACRO    (For 16-bit Real-mode use only)

   Initializes the DS and ES registers for a 16-bit Real-mode program.
   (Required for Chapter 10 example, page 367-368)

Parameters:

   None.

Example:

         Startup
    If identifier RealMode has not been defined, no code is generated.

    If RealMode has been defined, for example, by placing RealMode EQU 1 in the source code, or by placing -DRealMode=1 on the ML command line, then the following code will be generated:
         mov  ax,@data  ;;if RealMode
         mov  ds,ax
         mov  es,ax
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)