mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2025-10-30 08:02:29 +00:00
Fixed incorrect alignment during mod section loading (#65)
This commit is contained in:
parent
25e8bcc1e1
commit
9e9ae173ee
1 changed files with 4 additions and 2 deletions
|
|
@ -831,8 +831,10 @@ recomp::mods::CodeModLoadError recomp::mods::ModContext::load_mod_code(uint8_t*
|
||||||
MEM_B(i, (gpr)cur_section_addr) = binary_data[section.rom_addr + i];
|
MEM_B(i, (gpr)cur_section_addr) = binary_data[section.rom_addr + i];
|
||||||
}
|
}
|
||||||
mod.section_load_addresses[section_index] = cur_section_addr;
|
mod.section_load_addresses[section_index] = cur_section_addr;
|
||||||
|
// Calculate the next section's address based on the size of this section and its bss.
|
||||||
cur_section_addr += section.size + section.bss_size;
|
cur_section_addr += section.size + section.bss_size;
|
||||||
|
// Align the next section's address to 16 bytes.
|
||||||
|
cur_section_addr = (cur_section_addr + 15) & ~15;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Iterate over each section again after loading them to perform R_MIPS_32 relocations.
|
// Iterate over each section again after loading them to perform R_MIPS_32 relocations.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue