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

Method Function

include/recompiler/context.h:36–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34 std::unordered_map<int32_t, std::string> function_hooks;
35
36 Function(uint32_t vram, uint32_t rom, std::vector<uint32_t> words, std::string name, uint16_t section_index, bool ignored = false, bool reimplemented = false, bool stubbed = false)
37 : vram(vram), rom(rom), words(std::move(words)), name(std::move(name)), section_index(section_index), ignored(ignored), reimplemented(reimplemented), stubbed(stubbed) {}
38 Function() = default;
39 };
40

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected