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 have a function written in assemble,e.g. _MyFunc,which gets two paramenters and store something in the buffer. The prototype in C is : void MyFunc(unsigned char*,unsigned char); In c, I call it like this: unsigned char databuf[10]; MyFunc(databuf,10); The question is: Is my code responsible for the handling with different memory mode,such as small mode or large mode? If so,how can I do?