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

Method print

src/mdebug.cpp:496–504  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

494 return true;
495 }
496 void print() {
497 printf("Mdebug Info\n");
498 for (const auto& file : files_) {
499 printf(" File %s\n", file.filename.c_str());
500 for (const auto& symbol : file.symbols) {
501 printf(" %s @ 0x%08X (size 0x%08X)\n", symbol.name.c_str(), symbol.address, symbol.size);
502 }
503 }
504 }
505 bool good() {
506 return good_;
507 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected