MCPcopy Create free account
hub / github.com/TASEmulators/fceux / getSymbolAtBankOffset

Method getSymbolAtBankOffset

src/debugsymboltable.cpp:857–864  ·  view source on GitHub ↗

--------------------------------------------------------------

Source from the content-addressed store, hash-verified

855}
856//--------------------------------------------------------------
857debugSymbol_t *debugSymbolTable_t::getSymbolAtBankOffset( int bank, int ofs )
858{
859 FCEU::autoScopedLock alock(cs);
860
861 auto it = pageMap.find( bank );
862
863 return it != pageMap.end() ? it->second->getSymbolAtOffset( ofs ) : nullptr;
864}
865//--------------------------------------------------------------
866debugSymbol_t *debugSymbolTable_t::getSymbol( int bank, const std::string &name )
867{

Callers 8

AddNewSymbolicNameFunction · 0.80
replaceSymbolsFunction · 0.80
execMethod · 0.80
updateAssemblyViewMethod · 0.80
contextMenuEventMethod · 0.80

Calls 1

getSymbolAtOffsetMethod · 0.80

Tested by

no test coverage detected