mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-04-23 01:01:26 +00:00
50 lines
1.4 KiB
C++
50 lines
1.4 KiB
C++
#include <file.h>
|
|
#include <disasm.h>
|
|
#include <image.h>
|
|
|
|
int main()
|
|
{
|
|
const auto file = LoadFile("add.elf");
|
|
auto image = Image::ParseImage(file.data(), file.size()).value();
|
|
|
|
for (const auto& section : image.sections)
|
|
{
|
|
image.symbols.emplace(section.name, section.base, section.size, Symbol_Section);
|
|
}
|
|
|
|
image.symbols.emplace("_start", image.entry_point, 0x30, Symbol_Function);
|
|
|
|
for (const auto& section : image.sections)
|
|
{
|
|
std::printf("Section %.8s\n", section.name.c_str());
|
|
std::printf("\t%X-%X\n", section.base, section.base + section.size);
|
|
|
|
auto* data = (uint32_t*)section.data;
|
|
auto base = section.base;
|
|
const auto end = section.base + section.size;
|
|
|
|
if (section.flags & SectionFlags_Code)
|
|
{
|
|
while(base < end)
|
|
{
|
|
auto* instruction = ppc::DisassembleSingle(reinterpret_cast<uint8_t*>(data), base);
|
|
|
|
base += 4;
|
|
++data;
|
|
|
|
if (instruction == nullptr)
|
|
{
|
|
printf("\t%X\t.long %Xh\n", static_cast<uint32_t>(base - 4), *(data - 1));
|
|
}
|
|
else
|
|
{
|
|
std::printf("\t%X\t%s %s\n", static_cast<uint32_t>(base - 4), instruction->mnemonic, instruction->op_str);
|
|
cs_free(instruction, 1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|