pancake 833abfa19b * Major refactoring in r_syscall
- Requires rebuild, still not fully tested
  - Use r_pair (nosql db) to store all this info
  - Added lot of new platform descriptions for RSyscall
2011-09-04 05:33:59 +02:00

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
}
}'