If you want to work with a "raw" 16-bit address, you can use a pair of ":byte" statements:
:const foo 0x1234
...
:byte { foo >> 8 }
:byte { foo }When I need to do this, I usually generalize it into a macro:
:macro pointer ADDRESS {
:byte { ADDRESS >> 8 }
:byte { ADDRESS }
}
...
pointer foo