--------------------------------------------------------------
| 986 | } |
| 987 | //-------------------------------------------------------------- |
| 988 | int debugSymbolTable_t::ld65LoadDebugFile( const char *dbgFilePath ) |
| 989 | { |
| 990 | ld65::database db; |
| 991 | |
| 992 | if ( db.dbgFileLoad( dbgFilePath ) ) |
| 993 | { |
| 994 | return -1; |
| 995 | } |
| 996 | FCEU::autoScopedLock alock(cs); |
| 997 | |
| 998 | db.iterateSymbols( this, ld65_iterate_cb ); |
| 999 | |
| 1000 | return 0; |
| 1001 | } |
| 1002 | //-------------------------------------------------------------- |
no test coverage detected