Making Multiple Initialized Far Data Segments

Last reviewed: January 6, 1995
Article ID: Q34379
The information in this article applies to:
  • Microsoft Macro Assembler for MS-DOS, versions 5.0, 5.1, 6.0, 6.0a, and 6.0b
  • Microsoft Macro Assembler for OS/2, versions 5.1, 6.0, 6.0a, and 6.0b

SUMMARY

You can have multiple initialized far-data segments by using the .fardata [name] directive, as documented on page 88 of the "Microsoft Macro Assembler 5.1 Programmers Guide", page 33 of the "Microsoft Macro Assembler Reference" and under topic fardata in the QuickHelp for versions 6.0, 6.0a, and 6.0b. Just make sure that the segments have different names. In versions prior to 6.0, it is possible to leave one of the segments with the default name. With 6.0 and later, the symbol @fardata will be the segment value of the last segment declared with .fardata [name], which may not be the one with the default name.

MORE INFORMATION

The sample program below demonstrates using two intialized far-data segments. The contents of SrcBuff will be copied to DesBuff.

The program size is very large (131k) due to the amount of data that is being declared. It may take a while to link as well.

Sample Code

; Assemble options needed: none

   .model large

   .fardata SrcSeg
SrcBuff  db    65535 dup (65)   ; 1st initialized far segment

   .fardata DestSeg             ; Name 2nd fardata segment BufSeg
DestBuff db    65535 dup (66)

   .code
main:
   MOV  ax, SrcSeg              ; Make ds:si point to SrcBuff
   MOV  ds, ax
   MOV  si, 0

   MOV  ax, DestSeg             ; Make es:di point to DestBuff
   MOV  es, ax
   MOV  di, 0

   MOV  cx, 0ffffh              ; copy full segment

   REP  movsb                   ; automatically inc si & di,
                                ;    dec cx until it is 0
   MOV  ah, 4ch
   INT  21h

   END  main


Additional reference words: 5.00 5.10 6.00 6.00a 6.00b
KBCategory: kbprg
KBSubCategory: MASMLngIss


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: January 6, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.