mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-17 16:36:59 +00:00
Add all the files
This commit is contained in:
parent
e3db07a16a
commit
d60742f52b
1445 changed files with 430238 additions and 0 deletions
21
src/Cafe/OS/RPL/rpl_debug_symbols.cpp
Normal file
21
src/Cafe/OS/RPL/rpl_debug_symbols.cpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#include "Cafe/OS/RPL/rpl_debug_symbols.h"
|
||||
|
||||
std::map<MPTR, rplDebugSymbolBase*> map_DebugSymbols;
|
||||
|
||||
void rplDebugSymbol_createComment(MPTR address, const wchar_t* comment)
|
||||
{
|
||||
auto new_comment = new rplDebugSymbolComment();
|
||||
new_comment->type = RplDebugSymbolComment;
|
||||
new_comment->comment = comment;
|
||||
map_DebugSymbols[address] = new_comment;
|
||||
}
|
||||
|
||||
rplDebugSymbolBase* rplDebugSymbol_getForAddress(MPTR address)
|
||||
{
|
||||
return map_DebugSymbols[address];
|
||||
}
|
||||
|
||||
const std::map<MPTR, rplDebugSymbolBase*>& rplDebugSymbol_getSymbols()
|
||||
{
|
||||
return map_DebugSymbols;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue