◄Example► ◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Syntax: ORG expression ORG $+expression See also: ALIGN, EVEN, SEGMENT, STRUCT, Data-Declaration Directives Description: Sets the location counter to a specific address, given by <expression>. The assembler implements this directive by adjusting the location counter. ORG $+expression causes the assembler add <expression> bytes to the location counter. The <expression> must evaluate to a constant without forward references. Inside a STRUCT block, the <expression> parameter is relative to the beginning of the structure. This can be used to create structure elements that refer to bytes lower in memory than the beginning of the structure. -♦-