| 27 | }; |
| 28 | |
| 29 | struct ManualFunction { |
| 30 | std::string func_name; |
| 31 | std::string section_name; |
| 32 | uint32_t vram; |
| 33 | uint32_t size; |
| 34 | |
| 35 | ManualFunction(const std::string& func_name, std::string section_name, uint32_t vram, uint32_t size) : func_name(std::move(func_name)), section_name(std::move(section_name)), vram(vram), size(size) {} |
| 36 | }; |
| 37 | |
| 38 | struct Config { |
| 39 | int32_t entrypoint; |
nothing calls this directly
no outgoing calls
no test coverage detected