Files
Xenia-Canary/src/xenia/cpu/frontend/ppc_disasm.h
2015-08-07 21:29:03 -07:00

27 lines
864 B
C++

/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2013 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#ifndef XENIA_CPU_FRONTEND_PPC_DISASM_H_
#define XENIA_CPU_FRONTEND_PPC_DISASM_H_
#include "xenia/base/string_buffer.h"
#include "xenia/cpu/frontend/ppc_instr.h"
namespace xe {
namespace cpu {
namespace frontend {
int DisasmPPC(InstrData* i, StringBuffer* str);
} // namespace frontend
} // namespace cpu
} // namespace xe
#endif // XENIA_CPU_FRONTEND_PPC_DISASM_H_