--------------------------------------------------------------
| 443 | } |
| 444 | //-------------------------------------------------------------- |
| 445 | int generateNLFilenameForAddress(int address, std::string &NLfilename) |
| 446 | { |
| 447 | int bank; |
| 448 | |
| 449 | if (address < 0x8000) |
| 450 | { |
| 451 | bank = -1; |
| 452 | } |
| 453 | else |
| 454 | { |
| 455 | bank = getBank(address); |
| 456 | #ifdef DW3_NL_0F_1F_HACK |
| 457 | if(bank == 0x0F) |
| 458 | bank = 0x1F; |
| 459 | #endif |
| 460 | } |
| 461 | return generateNLFilenameForBank( bank, NLfilename ); |
| 462 | } |
| 463 | //-------------------------------------------------------------- |
| 464 | int debugSymbolTable_t::loadFileNL( int bank ) |
| 465 | { |
nothing calls this directly
no test coverage detected