mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-11-21 17:19:18 +01:00
[BotW] Add Extended Memory pack
Also the first V6 graphic pack!
This commit is contained in:
parent
3b265520fd
commit
ca026d2c9e
37
Mods/BreathOfTheWild_ExtendedMemory/patch_extendedHeaps.asm
Normal file
37
Mods/BreathOfTheWild_ExtendedMemory/patch_extendedHeaps.asm
Normal file
@ -0,0 +1,37 @@
|
||||
[BotW_ExtendedMemory_V208]
|
||||
moduleMatches = 0x6267BFD0
|
||||
|
||||
; BotW's heap system is quite complex with heaps being allocated within heaps. This work-in-progress hack only expands the size of a few important heaps
|
||||
|
||||
; Useful functions:
|
||||
; CreateHeap (inside other heap) 0x3624FAC and 0x3624108
|
||||
; Another CreateHeap function (unknown purpose) 0x30A857C
|
||||
|
||||
0x02C5E660 = lis r9, 0x8B60 ; add 0x50000000 to main gameheap which by default has a fixed size of 0x3B600000. Can't make it larger due to overlay arena being in the way
|
||||
|
||||
SaveAreaHeapSize = 8 * 1024 * 1024; // 8MiB (default is 2312KiB)
|
||||
TriggerParamHeapSize = 8 * 1024 * 1024; // 8MiB (default is around 2616KiB)
|
||||
HavokMainHeapSize = 80 * 1024 * 1024; // 80MiB (default is 30MiB)
|
||||
|
||||
; GameDataHeap
|
||||
0x032015E0 = lis r3, (SaveAreaHeapSize@ha + TriggerParamHeapSize@ha)
|
||||
|
||||
; GameDataHeap -> SaveArea heap
|
||||
0x03201A44 = lis r3, SaveAreaHeapSize@ha
|
||||
0x03201A5C = addi r3, r3, SaveAreaHeapSize@l
|
||||
|
||||
; GameDataHeap -> TriggerParam
|
||||
; Uses the remaining allocatable size of GameDataHeap
|
||||
; Heap creation is near 0x03201174
|
||||
|
||||
; HavokMainHeap
|
||||
0x037FD6A4 = lis r6, HavokMainHeapSize@ha
|
||||
|
||||
; Overlay arena
|
||||
0x030AA5F4 = lis r7, 0x4000 ; expand overlay arena root heap size to 0x40000000 (1GiB) from default 0x1C000000 (448MiB). Can't make it larger due to forground bucket memory being in the way (starts at 0xE0000000)
|
||||
; Extra size for overlay arena from rules.txt is 0x24000000 (576MiB)
|
||||
; Overlay arena -> FixedHeap
|
||||
0x034ED614 = lis r3, 0x0C20 + 0x1000 ; add 256MiB
|
||||
|
||||
; Overlay arena -> MoveableMemoryHeap
|
||||
0x034ED66C = lis r3, 0x0FD0 + 0x1000 ; add 256MiB
|
13
Mods/BreathOfTheWild_ExtendedMemory/rules.txt
Normal file
13
Mods/BreathOfTheWild_ExtendedMemory/rules.txt
Normal file
@ -0,0 +1,13 @@
|
||||
[Definition]
|
||||
titleIds = 00050000101C9300,00050000101C9400,00050000101C9500
|
||||
name = Extended Memory
|
||||
path = "The Legend of Zelda: Breath of the Wild/Mods/Extended Memory"
|
||||
description = Requires Cemu 1.21.0 or above|Adds an extra 2GB of emulated RAM. Some mods may require this.
|
||||
version = 6
|
||||
|
||||
[RAM]
|
||||
mapping0 = 0x10000000-0xA0000000 # extend MEM2 region (default range is 0x10000000-0x50000000)
|
||||
mapping1 = 0xA0000000-0xE0000000 # extend overlay region (default range is 0xA0000000-0xBC000000)
|
||||
|
||||
# If you've got any improvements for this pack (since it's currently work-in-progress), please let us know in the Cemu Graphic Packs github (https://github.com/slashiee/cemu_graphic_packs) via an issue.
|
||||
# Also, it'd be appreciated if the code for this graphic pack wasn't included inside of mods for the sake of mod compatibility.
|
Loading…
Reference in New Issue
Block a user