radare2/libr/asm/p/fastcall_x86.h
pancake 65da25d4c0 * Implement STATIC PLUGIN support for r_parse
- Use the new 'asm-like' build system for r_parse plugins
  - Added new callback to 'assemble' parseable expressions
    into compilable asm code
  - Refactorize and remove warnings in parse_mreplace
* Added r_str_char_count() in r_util
* Some fixups in the fastcall code in r_asm

--HG--
rename : libr/parse/p/mreplace/mmemory.c => libr/parse/p/parse_mreplace/mmemory.c
rename : libr/parse/p/mreplace/mmemory.h => libr/parse/p/parse_mreplace/mmemory.h
rename : libr/parse/p/mreplace/mreplace.c => libr/parse/p/parse_mreplace/mreplace.c
rename : libr/parse/p/mreplace/mreplace.h => libr/parse/p/parse_mreplace/mreplace.h
2009-08-14 01:44:12 +00:00

16 lines
256 B
C

static struct r_asm_fastcall_t fastcall [R_ASM_FASTCALL_ARGS] = {
{ NULL },
{ "eax", NULL },
{ "eax", "ebx", NULL },
{ "eax", "ebx", "ecx", NULL },
{ "eax", "ebx", "ecx", "edx", NULL },
NULL
};
/*
main()
{
printf("%s\n", fastcall[3]->arg[0]);
}
*/