mirror of
https://github.com/open-goal/jak-project
synced 2026-06-26 18:42:01 -04:00
add some basic symbol stuff
This commit is contained in:
@@ -14,6 +14,11 @@ std::vector<u8> ObjectFileData::to_vector() const {
|
||||
// data (code + static objects, by segment)
|
||||
for (int seg = N_SEG; seg-- > 0;) {
|
||||
result.insert(result.end(), segment_data[seg].begin(), segment_data[seg].end());
|
||||
// printf("seg %d data\n", seg);
|
||||
// for (auto x : segment_data[seg]) {
|
||||
// printf("%02x ", x);
|
||||
// }
|
||||
// printf("\n");
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user