Tool/software:
hello guys how are you? after I have migrated a code from COFF to EABI. Parts of the code in .asm do not work for me because the addressing is incorrect. For example for the variable PwmBKB defined as
PwmBKB .usect ".VIpg1",2,1,1. In the case that I want to point to PwmBKB+1, the compiler does not give me errors but the ACC value does not write it to PwmBKB+1 and it does write it to PwmBKB+0
MOVL ACC,XAR6
MOVH @PwmBKB+1,ACC
MOV @PwmBKB+0,ACC
any suggestion?
Thanks.