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 using an external Stack. suppose i decalre a function like this. func(data char ch) { data char s; . . . } Both ch and s will be stored in On- Chip RAM. But usually function parameters and local variables will be stored in SIACK only. So, where will ch and s will be stored.
Are you using the REENTRANT stack? If so, function arguments and local variables will be stored on that stack. Keil Support
func(char ch) reentrant large { char data s; }
char data var;
data char var;