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.
Any hope of adding the inline keyword to the C51 compiler so that we can declare functions as inline? For example, I have a C source file that wraps manipulations to the 8051 itself. Some functions are nothing more than: void cntrl_MaskAllInterrupts(void) { EA = 0; } I'd like it so that the compiler could inline this function so I don't get the function call and return overhead. Any chance?