mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-04 04:17:25 +00:00

- add 'timeout' directive - directives can now be passed in arguments - support more than 3 args for launching - show default config file in help * Added test suite for r_egg - Fix nested conditional and loops - Some situations can result in broken code - Code needs a huge cleanup * Varioues fixes for x86.nz plugin to make r_egg happy * Install python plugins into dist-packages only - site-packages is not the right place * Add R2_LIBDIR and R2_PREFIX constants * Honor LIBDIR in sdbpath for r_syscall * Fix rabin2 -h for -C
15 lines
168 B
R
15 lines
168 B
R
/* test calling a function */
|
|
|
|
call@global(128) {
|
|
.arg0
|
|
}
|
|
|
|
main@global(128) {
|
|
#// printf ("Hello World\n");
|
|
: nop
|
|
: mov eax, 1
|
|
: push eax
|
|
: int 0x80
|
|
call(1,2);
|
|
}
|