Hello,
Thanks for your answer.
For example I have the function Test_Func. How do I have to declare this function that this function will be linked into the non banked section?
/* prototype */
void __near Test_Func(void);
/* function code */
void __near Test_Func(void)
{
....
....
}
Is the above declaration right or do I also have to use #pragma?
/* prototype */
void __near Test_Func(void);
/* function code */
#pragma CODE_SEG __NEAR_SEG NON_BANKED
void __near Test_Func(void)
{
....
....
}
#pragma CODE_SEG DEFAULT
I´m sorry for my (stupid) questions - I´m a newbie in programming CodeWarrior.
Many thanks!
Thomas