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.
Is it possible? To use (invoke) a MPL macro in C source. Something like: __asm { ....... %*DEFINE (PackMyData ()) LOCAL end1( MOV R2,[R4] JNB R2.3,%end1 BSET T4IC.7 %end1: MOV R2,[R5] ........ ) } ..... __asm { %PackMyData() } Peter
No.
You will need to write an assembler module, and use your assembler Macro in your assembler source. You can call the assembler function from 'C'.