mirror of
https://github.com/open-goal/jak-project
synced 2026-06-07 03:58:11 -04:00
5093b97cda
* wip decompiler ir * add AtomicOp stuff * fix windows build and warnings * add instruction parser * include * make minilzo shared * odr fix * a * fix merge conflicts * move decompiler into namespace * update the code coverage to include the decompiler * add demo test * add register use test to example test
10 lines
271 B
C++
10 lines
271 B
C++
#include <stdexcept>
|
|
#include "Env.h"
|
|
|
|
namespace decompiler {
|
|
std::string Env::get_variable_name(Register reg, int atomic_idx) const {
|
|
(void)reg;
|
|
(void)atomic_idx;
|
|
throw std::runtime_error("Env::get_variable_name not yet implemented.");
|
|
}
|
|
} // namespace decompiler
|