Hello
MAP file generated by PPC linker is slightly different from .map file generated by HC12 linker.
You should be able to retrieve the address of your variables/functions though.
Suppose you have defined a variable as
char var2;
In the MAP file you can see something like
.bss section layout
Starting Virtual File
address Size address offset
---------------------------------
00000000 000001 4000b008 000011d8 1 .bss main.o
00000000 000001 4000b008 000011d8 1 var2 main.o
Which indicates that the variable var2 is allocated at address 0x4000b008.
CrasyCat