mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 21:09:52 +00:00
ec912054da
* Clean up .gitignore * Set exec bit on all python and shell scripts * Delete unused files * Add decomp-permuter repo * Update submodules
10 lines
118 B
Bash
Executable File
10 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$#" -ne "1" ];
|
|
then
|
|
echo "usage: $0 func_name"
|
|
exit 1
|
|
fi
|
|
|
|
tools/asm-differ/diff.py -mwo $1
|