Hello, I would like to know how the keil compiler locate the arguments of a function. 1) it pass it via the stack? 2) it declares a places in the memory space, and in this case how he choose the memory space that it will use? Thank You Kaoru
The NOREGPARMS compiler directive disables parameter passing in registers. However, it doesn't disable the use of registers. Not using registers would be silly. Jon