mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-06 04:59:43 +00:00
fcbcc00d1e
- Integrated with core 'as' command. as? for help - Display formatted parametters of syscalls - Needs to fully implement this everywhere - Syscall argument parsing is not yet complete (<4args) - r_debug_arg_{set|get} * Implement continue until syscall on Linux debugger backend * Lot of syntax cleanup to use the new code convention - Clean r_sign, r_search, r_syscall * Define global R_SYS_ARCH, _OS and _BITS - Handle asm.os and asm.arch to hook r_syscall plugins - Display 8 or 16 zeros depending on asm.bits - Added r_str_filter () to filter nonprintable chars --HG-- rename : libr/search/stripstr.c => libr/search/strings.c
6 lines
136 B
Makefile
6 lines
136 B
Makefile
NAME=r_syscall
|
|
OBJ=syscall.o freebsd.o netbsd.o linux.o darwin.o win7.o
|
|
CFLAGS+=-DLIL_ENDIAN=1 -D__UNIX__ -Wall -g
|
|
|
|
include ../rules.mk
|