Locating a function to a specific start address I still have problems with this issue. I have a function,
Eobd_ADP_pf()
"I only want to locate this single function, not a whole section." If the whole section contains only this single function, what's the difference...?!
Keil C51 places all code in a single .c file into a single segment. The only way you can get one function into its own segment is to put that function in its own .c file. The "Segment Naming Conventions" section of the manual in chapter 6 details the conventions for naming segments. "?PR?" is a prefix that means "program" -- that is, executable code.
I don't write code in object files, I write in C! What shall I do? I know no one that "write code in object" compile the C and see what you get Erik
Where do you leaving ?
First thing to do would be to place this function in a single file... After that check the site, it has the informations to help you get this to work
View all questions in Keil forum