mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-23 14:20:07 +00:00
791c4abfc0
* update all-types * begin work on static data decompiler * working for vif disasm array * mostly working * finish static data decompilation
15 lines
271 B
C++
15 lines
271 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace decompiler {
|
|
/*!
|
|
* A label to a location in an object file.
|
|
* Doesn't have to be word aligned.
|
|
*/
|
|
struct DecompilerLabel {
|
|
std::string name;
|
|
int target_segment = 0;
|
|
int offset; // in bytes
|
|
};
|
|
} // namespace decompiler
|