Dear all, I have a question about the writing format of .lin file in Keil C.
Ex1: ?PR?*?A => it means "all" functions within A.c
But,I saw the code segment as below in .lin file: ?PR?A
what does it mean ?
And does these 2 must exist "together" ?
http://www.keil.com/support/man/docs/c51/c51_ap_segname.htm
http://www.keil.com/support/man/docs/bl51/
http://www.keil.com/support/man/docs/lx51/
For the continuation of this thread, see: http://www.keil.com/forum/docs/thread11380.asp
Sorry... I only saw the example & explanation about ?PR?function_name?module_name !
But I did not see anything about ?PR?module_name
Could you point it out in more detail...^_^
Thanks in advance...
After reviewing .m51 file I found the followings:
1. almost all functions within source file call ?PR?module 2. Besides, if no local variables defined within one function, then this function does NOT call ?PR?module 3. 3 kinds of objects are generated after compiling: (a)program code (b)program data (c)constant data
Thus I guess maybe ?PR?module stands for "all local variables" within this module...
Am I correct ?