| 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) { |
no outgoing calls
no test coverage detected