Changes the location-counter value, relative to the base of the current section.
.org expression
expression
New value for the location counter; must be greater than the current location-counter value.
Addresses of subsequent assembly statements begin at the new expression value for the location counter, but this value is relative to the base of the current section.
The label Alpha reflects the value of .text + 0x1000. If the linker places the .text section at 0x10000000, the runtime Alpha value is 0x10001000.
.text .org 0x1000 Alpha: ... blr