--------------------------------------------------------------
| 923 | } |
| 924 | //-------------------------------------------------------------- |
| 925 | static void ld65_iterate_cb( void *userData, ld65::sym *s ) |
| 926 | { |
| 927 | debugSymbolTable_t *tbl = static_cast<debugSymbolTable_t*>(userData); |
| 928 | |
| 929 | if (tbl) |
| 930 | { |
| 931 | tbl->ld65_SymbolLoad(s); |
| 932 | } |
| 933 | } |
| 934 | //-------------------------------------------------------------- |
| 935 | void debugSymbolTable_t::ld65_SymbolLoad( ld65::sym *s ) |
| 936 | { |
nothing calls this directly
no test coverage detected