.ORG or *=
.ORG
*=
A directive that specifies the value of the code site counter.
Syntax:
[<label>[:]] .ORG expr
Example:
*= $1000 ; site counter: $1000
buf:.ORG * + $10 ; move the site counter by $10 bytes
; label 'buf' will receive the previous value of the counter