Hi, I'm trying to find out the meaning of the following entry in a MAP file generated by a Lx51 linker.
Memory Map Section:
00255FH 0026A9H 00014BH BYTE UNIT CODE ?CO?APK_PRCSMOD
APK_PRCSMOD is one of the modules in my code.
What I need to know is what information is stored in this range of addresses. I could understand it's meaning if it's a function or a variable , but what's the meaning of referencing a whole UNIT?
The prefix ?CO? indicates it belongs to the CONST memory class (Constant data in program memory), but there are no explicit const vars defined.
So I'm a bit lost...