Hello
Actually there is no calling convention configuration when you are coding in assembler.
Programmer has to define the ABI he wants to use himself.
So there is no option for ABI settings in macro assembler.
Only thing you can do is define a prefix file, where you add the preprocessing instruction
#define __REGABI__ 0
CrasyCat