jak-project/decompiler/Disasm/DecompilerLabel.h

15 lines
267 B
C
Raw Normal View History

#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;
int offset; // in bytes
};
} // namespace decompiler