mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 20:22:38 +00:00
833abfa19b
- Requires rebuild, still not fully tested - Use r_pair (nosql db) to store all this info - Added lot of new platform descriptions for RSyscall
13 lines
179 B
Bash
Executable File
13 lines
179 B
Bash
Executable File
#!/bin/sh
|
|
echo "_=0x80"
|
|
awk -F '(=|,)' '{
|
|
# 0x80.1=exit
|
|
if ($1 == "_") {
|
|
print $1"="$2
|
|
} else {
|
|
print $2"."$3"="$1
|
|
# exit=0x80,1,1,i
|
|
print $1"="$2","$3","$4","$5
|
|
}
|
|
}'
|