jak-project/decompiler/data/game_count.h
water111 5093b97cda
[Decompiler - New IR] Add AtomicOp (#181)
* 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
2021-01-06 20:04:15 -05:00

21 lines
411 B
C++

#pragma once
#include <vector>
#include "common/common_types.h"
namespace decompiler {
struct GameCountResult {
struct CountInfo {
s32 money_count;
s32 buzzer_count;
};
std::vector<CountInfo> info;
u32 mystery_data[2];
};
struct ObjectFileData;
GameCountResult process_game_count(ObjectFileData& data);
std::string write_game_count(const GameCountResult& result);
} // namespace decompiler