prototypes 4 fns written in asm?
prototypes 4 fns written in asm?
How do I prototype a fn written in assembler? I know asm as well as the C prototype syntax, what else is there?
RE:prototypes 4 fns written in asm?
I don't understand what exactly do you mean, but try this(in C files):
extern int fun(bla,bla)
, where int fun(bla,bla) is writen in asm, but my have a prefix name:_fun
Anton
extern int fun(bla,bla)
, where int fun(bla,bla) is writen in asm, but my have a prefix name:_fun
Anton