I have two files in a project C_code and assembly code.
well my problem is that I would like to know if this two sentences are identical
unsigned char base; ----this sentence it is declared in C_code
first code sentences
IMPORT base
mov.w R6,&base
mov.w base,R8
second code sentence
mov.w R6,R8
The first sentences and second sentence are the same?
Thanks in advance
Miguel