[ntsc-1.0/1.1] Extract assets (except audio) for ntsc-1.0 and ntsc-1.1 (#2253)

* [ntsc-1.0/1.1] Extract assets (except audio) for ntsc-1.0 and ntsc-1.1

* Fix merge with pal-1.0/1.1
This commit is contained in:
cadmic 2024-10-09 05:22:57 -07:00 committed by GitHub
parent 2048a65dd8
commit d3bf8ae78b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
40 changed files with 5627 additions and 50 deletions

View File

@ -30,7 +30,8 @@ COMPILER ?= ido
# gc-eu-mq GameCube Europe/PAL Master Quest
# gc-jp-ce GameCube Japan (Collector's Edition disc)
# The following versions are work-in-progress and not yet matching:
# (none currently)
# ntsc-1.0 N64 NTSC 1.0 (Japan/US depending on REGION)
# ntsc-1.1 N64 NTSC 1.1 (Japan/US depending on REGION)
VERSION ?= gc-eu-mq-dbg
# Number of threads to extract and compress with
N_THREADS ?= $(shell nproc)
@ -50,7 +51,19 @@ CPP_DEFINES ?=
REGIONAL_CHECKSUM := 0
# Version-specific settings
ifeq ($(VERSION),pal-1.0)
ifeq ($(VERSION),ntsc-1.0)
REGIONAL_CHECKSUM := 1
REGION ?= JP
PLATFORM := N64
DEBUG := 0
COMPARE := 0
else ifeq ($(VERSION),ntsc-1.1)
REGIONAL_CHECKSUM := 1
REGION ?= JP
PLATFORM := N64
DEBUG := 0
COMPARE := 0
else ifeq ($(VERSION),pal-1.0)
REGION ?= EU
PLATFORM := N64
DEBUG := 0

View File

@ -6,7 +6,7 @@
<Room Name="ddan_boss_room_0" Offset="0x0"/>
</File>
<File Name="ddan_boss_room_1" Segment="3">
<Texture Name="gDodongosCavernBossLavaFloorTex" OutName="lava_floor" Format="rgba16" Width="32" Height="64" Offset="0x21D8"/>
<Texture Name="gDodongosCavernBossLavaFloorTex" OutName="lava_floor" Format="rgba16" Width="32" Height="64" Offset="0x21C8"/>
<Room Name="ddan_boss_room_1" Offset="0x0"/>
</File>
</Root>

View File

@ -0,0 +1,12 @@
<Root>
<File Name="ddan_boss_scene" Segment="2">
<Scene Name="ddan_boss_scene" Offset="0x0"/>
</File>
<File Name="ddan_boss_room_0" Segment="3">
<Room Name="ddan_boss_room_0" Offset="0x0"/>
</File>
<File Name="ddan_boss_room_1" Segment="3">
<Texture Name="gDodongosCavernBossLavaFloorTex" OutName="lava_floor" Format="rgba16" Width="32" Height="64" Offset="0x21D8"/>
<Room Name="ddan_boss_room_1" Offset="0x0"/>
</File>
</Root>

View File

@ -1,8 +1,8 @@
<Root>
<File Name="ice_doukutu_scene" Segment="2">
<Cutscene Name="gIceCavernSerenadeCs" Offset="0x250"/>
<Texture Name="gIceCavernNightEntranceTex" OutName="night_entrance" Format="ia16" Width="64" Height="4" Offset="0xF7F0"/>
<Texture Name="gIceCavernDayEntranceTex" OutName="day_entrance" Format="ia16" Width="64" Height="4" Offset="0xF9F0"/>
<Texture Name="gIceCavernNightEntranceTex" OutName="night_entrance" Format="ia16" Width="64" Height="4" Offset="0xF810"/>
<Texture Name="gIceCavernDayEntranceTex" OutName="day_entrance" Format="ia16" Width="64" Height="4" Offset="0xFA10"/>
<Scene Name="ice_doukutu_scene" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_0" Segment="3">

View File

@ -0,0 +1,44 @@
<Root>
<File Name="ice_doukutu_scene" Segment="2">
<Cutscene Name="gIceCavernSerenadeCs" Offset="0x250"/>
<Texture Name="gIceCavernNightEntranceTex" OutName="night_entrance" Format="ia16" Width="64" Height="4" Offset="0xF7F0"/>
<Texture Name="gIceCavernDayEntranceTex" OutName="day_entrance" Format="ia16" Width="64" Height="4" Offset="0xF9F0"/>
<Scene Name="ice_doukutu_scene" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_0" Segment="3">
<Room Name="ice_doukutu_room_0" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_1" Segment="3">
<Room Name="ice_doukutu_room_1" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_2" Segment="3">
<Room Name="ice_doukutu_room_2" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_3" Segment="3">
<Room Name="ice_doukutu_room_3" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_4" Segment="3">
<Room Name="ice_doukutu_room_4" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_5" Segment="3">
<Room Name="ice_doukutu_room_5" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_6" Segment="3">
<Room Name="ice_doukutu_room_6" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_7" Segment="3">
<Room Name="ice_doukutu_room_7" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_8" Segment="3">
<Room Name="ice_doukutu_room_8" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_9" Segment="3">
<Room Name="ice_doukutu_room_9" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_10" Segment="3">
<Room Name="ice_doukutu_room_10" Offset="0x0"/>
</File>
<File Name="ice_doukutu_room_11" Segment="3">
<Room Name="ice_doukutu_room_11" Offset="0x0"/>
</File>
</Root>

View File

@ -7,7 +7,6 @@
<Scene Name="spot01_scene" Offset="0x0"/>
</File>
<File Name="spot01_room_0" Segment="3">
<DList Name="gSpot01DL_009E38" Offset="0x9E38"/>
<Room Name="spot01_room_0" Offset="0x0"/>
</File>
</Root>

View File

@ -8,7 +8,6 @@
<Cutscene Name="gGraveyardIntroCs" Offset="0x70C0"/>
</File>
<File Name="spot02_room_0" Segment="3">
<DList Name="gSpot02DL_0026D0" Offset="0x26D0"/>
<Room Name="spot02_room_0" Offset="0x0"/>
</File>
<File Name="spot02_room_1" Segment="3">

View File

@ -14,8 +14,6 @@
<Room Name="spot04_room_1" Offset="0x0"/>
</File>
<File Name="spot04_room_2" Segment="3">
<DList Name="gSpot04DL_002BB8" Offset="0x2BB8"/>
<DList Name="gSpot04DL_005058" Offset="0x5058"/>
<Room Name="spot04_room_2" Offset="0x0"/>
</File>
</Root>

View File

@ -8,9 +8,6 @@
<Scene Name="spot09_scene" Offset="0x0"/>
</File>
<File Name="spot09_room_0" Segment="3">
<DList Name="gSpot09DL_007108" Offset="0x7108"/>
<DList Name="gSpot09DL_008780" Offset="0x8780"/>
<Room Name="spot09_room_0" Offset="0x0"/>
</File>
</Root>

View File

@ -10,6 +10,6 @@
</File>
<File Name="spot16_room_0" Segment="3">
<Room Name="spot16_room_0" Offset="0x0"/>
<DList Name="spot16_room_0DL_00AA48" Offset="0xAA48"/>
<DList Name="spot16_room_0DL_00AA48" Offset="0xA9C8"/>
</File>
</Root>

View File

@ -0,0 +1,15 @@
<Root>
<File Name="spot16_scene" Segment="2">
<Cutscene Name="gDMTOwlCs" Offset="0x1E6A0"/>
<Cutscene Name="gDMTIntroCs" Offset="0x7EA0"/>
<Path Name="spot16_scenePathList_000254" Offset="0x254" NumPaths="2"/>
<Path Name="spot16_scenePathList_007884" Offset="0x7884" NumPaths="3"/>
<Scene Name="spot16_scene" Offset="0x0"/>
<Scene Name="spot16_scene_unused" Offset="0x78A0"/>
<Texture Name="spot16_scene_Tex_01AE98" Format="i4" Width="64" Height="64" Offset="0x1AE98"/>
</File>
<File Name="spot16_room_0" Segment="3">
<Room Name="spot16_room_0" Offset="0x0"/>
<DList Name="spot16_room_0DL_00AA48" Offset="0xAA48"/>
</File>
</Root>

View File

@ -3,6 +3,6 @@
<Texture Name="nintendo_rogo_static_Tex_000000" OutName="tex_00000000" Format="i8" Width="192" Height="32" Offset="0x0000"/>
<Texture Name="nintendo_rogo_static_Tex_001800" OutName="tex_00001800" Format="i8" Width="32" Height="32" Offset="0x1800"/>
<DList Name="gNintendo64LogoDL" Offset="0x2720"/>
<DList Name="gNintendo64LogoDL" Offset="0x27A0"/>
</File>
</Root>

View File

@ -0,0 +1,8 @@
<Root>
<File Name="nintendo_rogo_static" Segment="1">
<Texture Name="nintendo_rogo_static_Tex_000000" OutName="tex_00000000" Format="i8" Width="192" Height="32" Offset="0x0000"/>
<Texture Name="nintendo_rogo_static_Tex_001800" OutName="tex_00001800" Format="i8" Width="32" Height="32" Offset="0x1800"/>
<DList Name="gNintendo64LogoDL" Offset="0x2720"/>
</File>
</Root>

View File

@ -988,7 +988,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan_mq.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -1160,7 +1160,7 @@ assets:
- name: scenes/overworld/spot15
xml_path: assets/xml/scenes/overworld/spot15.xml
- name: scenes/overworld/spot16
xml_path: assets/xml/scenes/overworld/spot16.xml
xml_path: assets/xml/scenes/overworld/spot16_v2.xml
- name: scenes/overworld/spot17
xml_path: assets/xml/scenes/overworld/spot17.xml
- name: scenes/overworld/spot18
@ -1236,7 +1236,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static_v2.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -972,7 +972,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan_mq.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -1142,7 +1142,7 @@ assets:
- name: scenes/overworld/spot15
xml_path: assets/xml/scenes/overworld/spot15.xml
- name: scenes/overworld/spot16
xml_path: assets/xml/scenes/overworld/spot16.xml
xml_path: assets/xml/scenes/overworld/spot16_v2.xml
- name: scenes/overworld/spot17
xml_path: assets/xml/scenes/overworld/spot17.xml
- name: scenes/overworld/spot18
@ -1202,7 +1202,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static_v2.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -972,7 +972,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -1000,7 +1000,7 @@ assets:
- name: scenes/dungeons/HIDAN
xml_path: assets/xml/scenes/dungeons/HIDAN.xml
- name: scenes/dungeons/ice_doukutu
xml_path: assets/xml/scenes/dungeons/ice_doukutu.xml
xml_path: assets/xml/scenes/dungeons/ice_doukutu_v2.xml
- name: scenes/dungeons/jyasinboss
xml_path: assets/xml/scenes/dungeons/jyasinboss.xml
- name: scenes/dungeons/jyasinzou
@ -1142,7 +1142,7 @@ assets:
- name: scenes/overworld/spot15
xml_path: assets/xml/scenes/overworld/spot15.xml
- name: scenes/overworld/spot16
xml_path: assets/xml/scenes/overworld/spot16.xml
xml_path: assets/xml/scenes/overworld/spot16_v2.xml
- name: scenes/overworld/spot17
xml_path: assets/xml/scenes/overworld/spot17.xml
- name: scenes/overworld/spot18
@ -1202,7 +1202,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static_v2.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -971,7 +971,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -999,7 +999,7 @@ assets:
- name: scenes/dungeons/HIDAN
xml_path: assets/xml/scenes/dungeons/HIDAN.xml
- name: scenes/dungeons/ice_doukutu
xml_path: assets/xml/scenes/dungeons/ice_doukutu.xml
xml_path: assets/xml/scenes/dungeons/ice_doukutu_v2.xml
- name: scenes/dungeons/jyasinboss
xml_path: assets/xml/scenes/dungeons/jyasinboss.xml
- name: scenes/dungeons/jyasinzou
@ -1141,7 +1141,7 @@ assets:
- name: scenes/overworld/spot15
xml_path: assets/xml/scenes/overworld/spot15.xml
- name: scenes/overworld/spot16
xml_path: assets/xml/scenes/overworld/spot16.xml
xml_path: assets/xml/scenes/overworld/spot16_v2.xml
- name: scenes/overworld/spot17
xml_path: assets/xml/scenes/overworld/spot17.xml
- name: scenes/overworld/spot18
@ -1201,7 +1201,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static_v2.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -971,7 +971,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan_mq.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -1141,7 +1141,7 @@ assets:
- name: scenes/overworld/spot15
xml_path: assets/xml/scenes/overworld/spot15.xml
- name: scenes/overworld/spot16
xml_path: assets/xml/scenes/overworld/spot16.xml
xml_path: assets/xml/scenes/overworld/spot16_v2.xml
- name: scenes/overworld/spot17
xml_path: assets/xml/scenes/overworld/spot17.xml
- name: scenes/overworld/spot18
@ -1201,7 +1201,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -971,7 +971,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -999,7 +999,7 @@ assets:
- name: scenes/dungeons/HIDAN
xml_path: assets/xml/scenes/dungeons/HIDAN.xml
- name: scenes/dungeons/ice_doukutu
xml_path: assets/xml/scenes/dungeons/ice_doukutu.xml
xml_path: assets/xml/scenes/dungeons/ice_doukutu_v2.xml
- name: scenes/dungeons/jyasinboss
xml_path: assets/xml/scenes/dungeons/jyasinboss.xml
- name: scenes/dungeons/jyasinzou
@ -1141,7 +1141,7 @@ assets:
- name: scenes/overworld/spot15
xml_path: assets/xml/scenes/overworld/spot15.xml
- name: scenes/overworld/spot16
xml_path: assets/xml/scenes/overworld/spot16.xml
xml_path: assets/xml/scenes/overworld/spot16_v2.xml
- name: scenes/overworld/spot17
xml_path: assets/xml/scenes/overworld/spot17.xml
- name: scenes/overworld/spot18
@ -1201,7 +1201,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -971,7 +971,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan_mq.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -1141,7 +1141,7 @@ assets:
- name: scenes/overworld/spot15
xml_path: assets/xml/scenes/overworld/spot15.xml
- name: scenes/overworld/spot16
xml_path: assets/xml/scenes/overworld/spot16.xml
xml_path: assets/xml/scenes/overworld/spot16_v2.xml
- name: scenes/overworld/spot17
xml_path: assets/xml/scenes/overworld/spot17.xml
- name: scenes/overworld/spot18
@ -1201,7 +1201,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static_v2.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -971,7 +971,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -999,7 +999,7 @@ assets:
- name: scenes/dungeons/HIDAN
xml_path: assets/xml/scenes/dungeons/HIDAN.xml
- name: scenes/dungeons/ice_doukutu
xml_path: assets/xml/scenes/dungeons/ice_doukutu.xml
xml_path: assets/xml/scenes/dungeons/ice_doukutu_v2.xml
- name: scenes/dungeons/jyasinboss
xml_path: assets/xml/scenes/dungeons/jyasinboss.xml
- name: scenes/dungeons/jyasinzou
@ -1141,7 +1141,7 @@ assets:
- name: scenes/overworld/spot15
xml_path: assets/xml/scenes/overworld/spot15.xml
- name: scenes/overworld/spot16
xml_path: assets/xml/scenes/overworld/spot16.xml
xml_path: assets/xml/scenes/overworld/spot16_v2.xml
- name: scenes/overworld/spot17
xml_path: assets/xml/scenes/overworld/spot17.xml
- name: scenes/overworld/spot18
@ -1201,7 +1201,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static_v2.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -0,0 +1 @@
9f04c8e68534b870f707c247fa4b50fc build/ntsc-1.0/oot-ntsc-1.0-compressed.z64

View File

@ -0,0 +1 @@
963d8ee3bd921f4d3c833b82004a76d2 build/ntsc-1.0/oot-ntsc-1.0.z64

View File

@ -0,0 +1 @@
5bd1fe107bf8106b2ab6650abecd54d6 build/ntsc-1.0/oot-ntsc-1.0-compressed.z64

View File

@ -0,0 +1 @@
6829a16db1a34e8ce989847cd8da8d9a build/ntsc-1.0/oot-ntsc-1.0.z64

1219
baseroms/ntsc-1.0/config.yml Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
1bf5f42b98c3e97948f01155f12e2d88 build/ntsc-1.1/oot-ntsc-1.1-compressed.z64

View File

@ -0,0 +1 @@
8b07c719217cb89334edf481a52ef392 build/ntsc-1.1/oot-ntsc-1.1.z64

View File

@ -0,0 +1 @@
721fdcc6f5f34be55c43a807f2a16af4 build/ntsc-1.1/oot-ntsc-1.1-compressed.z64

View File

@ -0,0 +1 @@
a11496a4abcd9f173f2f2a342a6370d2 build/ntsc-1.1/oot-ntsc-1.1.z64

1219
baseroms/ntsc-1.1/config.yml Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -978,7 +978,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -1006,7 +1006,7 @@ assets:
- name: scenes/dungeons/HIDAN
xml_path: assets/xml/scenes/dungeons/HIDAN.xml
- name: scenes/dungeons/ice_doukutu
xml_path: assets/xml/scenes/dungeons/ice_doukutu.xml
xml_path: assets/xml/scenes/dungeons/ice_doukutu_v2.xml
- name: scenes/dungeons/jyasinboss
xml_path: assets/xml/scenes/dungeons/jyasinboss.xml
- name: scenes/dungeons/jyasinzou
@ -1148,7 +1148,7 @@ assets:
- name: scenes/overworld/spot15
xml_path: assets/xml/scenes/overworld/spot15.xml
- name: scenes/overworld/spot16
xml_path: assets/xml/scenes/overworld/spot16.xml
xml_path: assets/xml/scenes/overworld/spot16_v2.xml
- name: scenes/overworld/spot17
xml_path: assets/xml/scenes/overworld/spot17.xml
- name: scenes/overworld/spot18
@ -1208,7 +1208,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -984,7 +984,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -1214,7 +1214,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -984,7 +984,7 @@ assets:
- name: scenes/dungeons/ddan
xml_path: assets/xml/scenes/dungeons/ddan.xml
- name: scenes/dungeons/ddan_boss
xml_path: assets/xml/scenes/dungeons/ddan_boss.xml
xml_path: assets/xml/scenes/dungeons/ddan_boss_v2.xml
- name: scenes/dungeons/FIRE_bs
xml_path: assets/xml/scenes/dungeons/FIRE_bs.xml
- name: scenes/dungeons/ganon
@ -1214,7 +1214,7 @@ assets:
- name: textures/nes_font_static
xml_path: assets/xml/textures/nes_font_static.xml
- name: textures/nintendo_rogo_static
xml_path: assets/xml/textures/nintendo_rogo_static.xml
xml_path: assets/xml/textures/nintendo_rogo_static_v2.xml
- name: textures/parameter_static
xml_path: assets/xml/textures/parameter_static.xml
- name: textures/place_title_cards

View File

@ -0,0 +1,10 @@
<Root>
<SymbolMap File="SymbolMap.txt"/>
<ActorList File="../ActorList.txt"/>
<ObjectList File="../ObjectList.txt"/>
<EntranceList File="../EntranceList.txt"/>
<SpecialEntranceList File="../SpecialEntranceList.txt"/>
<EnumData File="../EnumData.xml"/>
<ExternalXMLFolder Path="assets/xml/"/>
<ExternalFile XmlPath="objects/gameplay_keep.xml" OutPath="assets/objects/gameplay_keep/"/>
</Root>

View File

@ -0,0 +1,2 @@
800FEDB0 gMtxClear
80AE0AE0 sShadowTex

View File

@ -0,0 +1,10 @@
<Root>
<SymbolMap File="SymbolMap.txt"/>
<ActorList File="../ActorList.txt"/>
<ObjectList File="../ObjectList.txt"/>
<EntranceList File="../EntranceList.txt"/>
<SpecialEntranceList File="../SpecialEntranceList.txt"/>
<EnumData File="../EnumData.xml"/>
<ExternalXMLFolder Path="assets/xml/"/>
<ExternalFile XmlPath="objects/gameplay_keep.xml" OutPath="assets/objects/gameplay_keep/"/>
</Root>

View File

@ -0,0 +1,2 @@
800FEF70 gMtxClear
80AE0C80 sShadowTex