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.
//main C code---------------------- extern void a(dptr); main() { a(dptr); } //assemble code-------------------- public a a: mov a,#dptr ............ I want to take dptr in a(dptr); My question is how a(dptr); in C code can work fine. Thanks
Thanks for your detail description. deeply appreciated.