Hi, I have a project has both *.a51 and *.c source files. I wrote a macro in assembly code. Is is possible to use this maro in my c code? file: macro.a51 MACROTEST MACRO . MOV A,#0 . . ENDM END file: testmacro.c void Test(void) { . . MACROTEST . . } Thank you. Ovid.