User manual

ST Assembler-Linker ST7 and STM8 addressing modes
Doc ID 11392 Rev 4 17/89
nop
ld A,#lab12.h; load A with $00
ld A,#lab12.l; load A with $12
In the STM8, symbols .H and .L are not available. Use low and high primitives instead for
example:
lab1 equ $112233
ld A,#{low{seg lab1}} ; load A with $11
ld A,#{high lab1} ; load A with $22
ld A,#{low lab1} ; load A with $33