Question
Loading value directly in the Index register "XL"
I am using STM8S103F2 controller in assembly language. I want to load directly value in "XL" index register in one instruction and i do not want to affect "XH" register. (Index "x" register is the combination of XH and XL). Other ways to load value in "X" index register:
- LDW x,#$50
- LD A,#$10 LD XL,A
