first commit

This commit is contained in:
Maschell
2020-04-28 14:43:07 +02:00
commit 9a4068d15b
66 changed files with 8989 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#include "RelocationData.h"
#include "utils/StringTools.h"
std::string RelocationData::toString(){
return StringTools::strfmt("%s destination: %08X offset: %08X type: %02X addend: %d rplName: %s isData: %d \n",name.c_str(), destination, offset, type, addend, rplInfo->getName().c_str(), rplInfo->isData() );
}