mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 17:48:16 +00:00
5 lines
126 B
Bash
5 lines
126 B
Bash
|
#!/bin/sh
|
||
|
for d in x86_64 arm m68k aarch64 mips mipsel mips64 mips64el sparc sparc64; do
|
||
|
python header_gen.py $d > $d.h
|
||
|
done
|