Assembly Language Help (alang.hlp) (
Table of Contents;
Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
Segment Override Operator (:)
◄Example► ◄Up► ◄Contents► ◄Index► ◄Back►
────────────────────────────────────────────────────────────────────────────
Syntax: segment:expression
See also: SEG, SEGMENT, GROUP, ASSUME, Labeling (:/::)
Description:
Overrides the default segment of <expression> with <segment>.
Forces the address of the variable or label to be computed
relative to the specified segment.
Parameter Description
segment A segment register (CS, DS, SS, ES, FS, or GS),
group name, segment name, or segment expression.
expression A memory expression.
-♦-