MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / get_reference_section_vram

Method get_reference_section_vram

include/recompiler/context.h:551–561  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

549 }
550
551 uint32_t get_reference_section_vram(uint16_t section_index) const {
552 if (section_index == N64Recomp::SectionAbsolute) {
553 return 0;
554 }
555 else if (!is_regular_reference_section(section_index)) {
556 return 0;
557 }
558 else {
559 return reference_sections[section_index].ram_addr;
560 }
561 }
562
563 uint32_t get_reference_section_rom(uint16_t section_index) const {
564 if (section_index == N64Recomp::SectionAbsolute) {

Callers 3

read_sectionsFunction · 0.80
mainFunction · 0.80
build_mod_contextFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected