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

Class RSPRecompilerConfig

RSPRecomp/src/rsp_recomp.cpp:629–639  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

627};
628
629struct RSPRecompilerConfig {
630 size_t text_offset;
631 size_t text_size;
632 size_t text_address;
633 std::filesystem::path rom_file_path;
634 std::filesystem::path output_file_path;
635 std::string output_function_name;
636 std::vector<uint32_t> extra_indirect_branch_targets;
637 std::unordered_set<uint32_t> unsupported_instructions;
638 std::vector<RSPRecompilerOverlaySlotConfig> overlay_slots;
639};
640
641std::filesystem::path concat_if_not_empty(const std::filesystem::path& parent, const std::filesystem::path& child) {
642 if (!child.empty()) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected