1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-06-18 09:23:06 -07:00
mm/patch/oot-widescreen

18 lines
501 B
Bash
Executable File

#!/usr/bin/env bash
set -e
inject=../Lua/inject
rom=../roms/everything/"Legend of Zelda, The - Ocarina of Time - Master Quest (E) (Debug) [f1].z64"
lips=../Lua/lib/lips
(cd ..; cp "$rom" patch/oot-widescreen.z64)
# don't copy entire dir; avoid copying dotfiles (.git)
mkdir -p lips
cp "$lips"/* lips
cp "$inject/"widescreen-either.asm .
luajit patch.lua -o 0 --extra-rom 0x035D0000 --extra-ram 0x80700000 widescreen-inline.asm oot-widescreen.z64
(cd ..; ./z64dump.py -f patch/oot-widescreen.z64)