jak-project/decompiler/analysis/mips2c.h
water111 ecb2781a89
[decompiler] cleanup to get atomic ops working on jak2 inputs (#1426)
* [decompiler] cleanup to get atomic ops working on jak2 inputs

* clang format
2022-06-08 18:34:52 -04:00

15 lines
343 B
C++

#pragma once
#include <vector>
#include "common/versions.h"
namespace decompiler {
class Function;
void run_mips2c(Function* f, GameVersion version);
void run_mips2c_jump_table(Function* f,
const std::vector<int>& jump_table_locations,
GameVersion version);
} // namespace decompiler