Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Assembly Language - <b>group define segment group masm directive</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
GROUP            Define Segment Group                          MASM Directive

  name      GROUP     segmentname,,,

    Causes the assembler to associate name with one or more segments, so
    that all labels and variables defined in those segments have their
    offsets computed relative to the beginning of name.

       Notes:     The name argument must be unique, and the segmentName
                  argument must be a segment previously defined with a
                  SEGMENT directive or a SEG expression.

                  A group's segments need not be contiguous.  Segments not
                  belonging to the group can be loaded between segments
                  that do.  There is a restriction in that the first byte
                  of the first segment in the group must not be greater
                  than 65,535 bytes away from the last byte of the last
                  segment of the group.  This means that if all the
                  segments of a group are contiguous, a group can be no
                  larger than 65,536 bytes, or 64K.

                  The name argument must not be in any other GROUP
                  directive in any source file.

                  The group name can be used in any ASSUME directive
                  statements and can also be used with segment overrides.

See Also: SEGMENT SEG

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson