mirror of
https://github.com/zeldaret/oot-vc.git
synced 2026-09-26 05:31:58 -04:00
b72530b1a2
* start mk64 * splits, rename dol to wii-vc, match some files * dol apply * format * match system, rom and flash * dol apply & format * match errordisplay (and almost store) * match store * version stuff * build fixes * match banner.c * link soundRVL * match helpRVL * match controller.c and random progress * match library.c * match libraries * dol apply * minor configure.py improvements * name all functions for mk64-j and mk64-e and started splits * complete splits for mk64-j * run dol apply * complete splits for mk64-e * forgot __init_cpp_exceptions.cpp * self-review * add mk64 to CI * add mk64 in the supported versions list from the readme * version improvements * fix build issues * oot-vc -> wii-vc * configure.py improvement * version stuff * initial configs * name all functions * complete splits and symbols for sm64-e * more splits and symbols * more splits and symbols 2 * more splits and symbols 3 * match homebutton differences for jp and us * emulator progress * run dol-apply and format * add sm64 to CI * fix some build issues * library.c progress * library.c progress 2 * library.c progress 3 * frame.c progress Co-authored-by: cadmic <146315916+cadmic@users.noreply.github.com> * cpu progress * frameDrawSetupSP progress * minor rsp progress * review * review 2 + fix match issues * format * review 2 * `VERSION >=` -> `VERSION >` for consistency * add sm64 to the readme * fake match rspParseGBI_F3DEX2 * review 4 * `VERSION >` -> `VERSION >=` * format * fix build issues --------- Co-authored-by: Yanis42 <35189056+Yanis42@users.noreply.github.com> Co-authored-by: cadmic <146315916+cadmic@users.noreply.github.com>
12 lines
317 B
Bash
Executable File
12 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Wrapper for `dtk dol diff` to locate the first diff in the dol.
|
|
# Usage: ./dol-diff [VERSION]
|
|
# If VERSION is not provided, it defaults to oot-j.
|
|
|
|
set -euo pipefail
|
|
|
|
VERSION=${1:-oot-j}
|
|
ninja "build/$VERSION/wii-vc.elf"
|
|
build/tools/dtk dol diff "config/$VERSION/config.yml" "build/$VERSION/wii-vc.elf"
|