--- interpolate8x8_3dn.asm 2004/07/24 11:46:08 1.6 +++ interpolate8x8_3dn.asm 2004/08/22 11:46:10 1.7 @@ -27,10 +27,19 @@ %macro cglobal 1 %ifdef PREFIX - global _%1 - %define %1 _%1 + %ifdef MARK_FUNCS + global _%1:function + %define %1 _%1:function + %else + global _%1 + %define %1 _%1 + %endif %else - global %1 + %ifdef MARK_FUNCS + global %1:function + %else + global %1 + %endif %endif %endmacro