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 want to extrn a function in asm in C. example: _asm { extrn test:near call test } like the example: but I have a exception like that: inline syntax error in 'opcode'; found 'test'
Hi, I don't see why you want to do this. You can do it in C:
extern void test(void); // before your main function ... test(); // in the middle of some code.
I already find the way to solve this problem. Thanks for your help. Best Regrad