mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-26 15:35:55 +00:00
65da25d4c0
- 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
16 lines
256 B
C
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]);
|
|
}
|
|
*/
|