papermario/tools/old/set_reorder_asm.sh
Alexander Faßbender 76c7e51f4a
Update and move tools (#596)
* update scripts and move outdated ones to /old/

* updates

* resolve issues
2022-01-02 13:10:49 +01:00

11 lines
112 B
Bash
Executable File

#!/bin/bash
shopt -s globstar
LIST=$(ls asm/**/*.s)
for i in $LIST
do
printf "\n.set reorder\n" >> $i
done