You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
arch="$1"
|
|
defs="$2"
|
|
out="$3"
|
|
|
|
$M4 "-D${arch}" -DDISASSEMBLER "$defs" \
|
|
| sed "1,/^%%/d;/^#/d;/^[[:space:]]*$/d;s/[^:]*:\([^[:space:]]*\).*/MNE(\\1)/;s/{[^}]*}//g;/INVALID/d" \
|
|
| sort -u \
|
|
> "$out"
|