mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-25 22:29:48 +00:00
06e98dadb1
- ATM only support for linux and osx - Do not show asm when -f is passed - Added 3 test programs for osx/linux in ragg2 * Add support for 'lea' opcode in x86.nz - Support more 'mov [off], reg' opcodes - Lot of new test cases in test.nz * Fix some segfaults and parsing bugs in egg/lang --HG-- rename : binr/ragg2/exithello.r => binr/ragg2/t/exithello.r
12 lines
89 B
R
12 lines
89 B
R
/* Hello World */
|
|
|
|
exit@syscall(1);
|
|
|
|
@syscall() {
|
|
: int3
|
|
}
|
|
|
|
main@global() {
|
|
exit(2);
|
|
}
|