mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 13:18:08 +00:00
4 lines
142 B
Bash
Executable file
4 lines
142 B
Bash
Executable file
#!/bin/sh
|
|
for d in x86_64 arm armeb m68k aarch64 aarch64eb mips mipsel mips64 mips64el sparc sparc64; do
|
|
python header_gen.py $d > $d.h
|
|
done
|