Given
var16: .dw VAL16
I want to do
lds zl, low_byte(var16) lds zh, high_byte(var16)
I know I could load var16 and var16+1, but I'm wondering if there is some directive or somesuch, which I'm not seeing, that does that a bit more readably.
Of course you may feel that var16, var16+1 is perfectly readable. :)