Hello, If i write a function in assembly and name it with prefix _? , ( example _?FUNCNAME ) will this make that function automatically reentrant. Or is it just a naming convention used by Keil if you write your function in C (and use the "reentrant" keyword). Regards, KC
"will this make that function automatically reentrant" Nothing is automatic in assembler! That's the whole point of assembler - you are in complete control of every detail; if you want anything done, you must do it all yourself. Assembler does precisely what you say - nothing more, nothing less.