papermario/tools/old/set_reorder_asm.sh

11 lines
119 B
Bash
Executable File

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