radare2/libr/asm/p/fastcall_mips.h
pancake a1f45dbf8a * Add support for static plugins to r_debug
- r_debug_ptrace is now static by default
* Some code cleanup and warnings removal
* Added hg-utils.mk and MKPLUGINS directive in user-config
* Initial implementation of dbg_gdb r_debug plugin
  - Import ERESI's libgdbwrap from r1
* Add some missing files (asm/p/fastcall_mips.h, core/t/ragrep2.c)
* Added r_str_bool helper to get "true"/"false" from int
2009-08-22 01:54:24 +00:00

16 lines
245 B
C

static struct r_asm_fastcall_t fastcall[R_ASM_FASTCALL_ARGS] = {
{ NULL },
{ "a0", NULL },
{ "a0", "a1", NULL },
{ "a0", "a1", "a2", NULL },
{ "a0", "a1", "a2", "a3", NULL },
NULL
};
/*
main()
{
printf("%s\n", fastcall[3]->arg[0]);
}
*/