| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected