prototypes 4 fns written in asm?

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
ltos

prototypes 4 fns written in asm?

Post by ltos »

How do I prototype a fn written in assembler?  I know asm as well as the C prototype syntax, what else is there?
Anton

RE:prototypes 4 fns written in asm?

Post by Anton »

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
Post Reply