| 1408 | #undef EXPORT_H |
| 1409 | |
| 1410 | void irxImportLog(const std::string& libname, u16 index, const char* funcname) |
| 1411 | { |
| 1412 | PSXBIOS_LOG("%8.8s.%03d: %s (%x, %x, %x, %x)", |
| 1413 | libname.data(), index, funcname ? funcname : "unknown", |
| 1414 | a0, a1, a2, a3); |
| 1415 | } |
| 1416 | |
| 1417 | void irxImportLog_rec(u32 import_table, u16 index, const char* funcname) |
| 1418 | { |
no test coverage detected