to make an assembly routine clearer to read, I want to indicate which of the 2 dptrs are used in each instance. One is fetch, another is store. So, to achieve that, I insert the following:
fptr equ dptr sptr equ dptr
movx a,@fptr mov r7,a inc fptr inc auxr1 movx a,@sptr orl a,r7 movx @sptr,a inc sptr inc auxr1
"Also the current A51 release handles C Macro definitions." Excellent! That does what the OP asked for. That'll also take one source translation step out of my builds.