| 541 | } |
| 542 | |
| 543 | bool add_callback(size_t dependency_event_index, size_t function_index) { |
| 544 | callbacks.emplace_back(Callback{ |
| 545 | .function_index = function_index, |
| 546 | .dependency_event_index = dependency_event_index |
| 547 | }); |
| 548 | return true; |
| 549 | } |
| 550 | |
| 551 | uint32_t get_reference_section_vram(uint16_t section_index) const { |
| 552 | if (section_index == N64Recomp::SectionAbsolute) { |
no outgoing calls
no test coverage detected