blob: a46d5e7e4253a1cbee3d6a242a1c4804a1b22cf8 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
# note, this quick hack only works with five arguments.
# if you're trying to use six arguments, you need to add another `$6` etc.
python3 tools/asm-differ/diff.py $1 $2 $3 $4 $5 $6 $7 $8
|