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

Class DataSymbol

include/recompiler/context.h:147–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145 };
146
147 struct DataSymbol {
148 uint32_t vram;
149 std::string name;
150
151 DataSymbol(uint32_t vram, std::string&& name) : vram(vram), name(std::move(name)) {}
152 };
153
154 using DataSymbolMap = std::unordered_map<uint16_t, std::vector<DataSymbol>>;
155

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected