mirror of
https://github.com/open-goal/jak-project
synced 2026-07-08 14:36:52 -04:00
Add lambda and static objects (#30)
* add some more tests for let * support static strings * add function calling * add prints for windows debgu * one test only * try swapping r14 and r15 in windows * swap back * disable defun for now * fix massive bug * fix formatting
This commit is contained in:
@@ -14,11 +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");
|
||||
// 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