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

Function getNamesPointerForAddress

src/drivers/win/debuggersp.cpp:685–695  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

683 return bank;
684}
685Name* getNamesPointerForAddress(uint16 address)
686{
687 if(address >= 0x8000)
688 {
689 return pageNames[RomPageIndexForAddress(address)];
690 }
691 else
692 {
693 return ramBankNames;
694 }
695}
696void setNamesPointerForAddress(uint16 address, Name* newNode)
697{
698 if (address >= 0x8000)

Callers 10

FCEUD_TraceInstructionFunction · 0.85
UpdateCaptionFunction · 0.85
DisassembleFunction · 0.85
replaceNamesFunction · 0.85
AddDebuggerBookmarkFunction · 0.85
SymbolicNamingCallBFunction · 0.85
AddNewSymbolicNameFunction · 0.85
DeleteSymbolicNameFunction · 0.85

Calls 1

RomPageIndexForAddressFunction · 0.85

Tested by

no test coverage detected