We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I am having problems with locating a second function to follow on from the first.
The following linker command works....
?PR?_LOADER?LOADER(0FA00h),?PR?_HEX2CHARNICK?LOADER(0FC30h)
but i do not want to specify the location of the second function just the first, looking at the documentation it says that i should be able to do the following....
CODE(?PR?_LOADER?LOADER(0FA00h),?PR?_HEX2CHARNICK?LOADER)
This causes a linker error..
What do I need to put in the linker command line so that the second function follows immediately on from the first.
CODE( 0X0000-0XFFFF , CODE(?PR?_LOADER?LOADER(0FA00h),?PR?_HEX2CHARNICK?LOADER) )
That's a CODE(...) command inside the parameter list of another CODE(...) command. Are you sure that's supposed to work? The message seems to indicate it's not.