29 lines
904 B
C++
29 lines
904 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_FRONTEND_PPC_PPC_DISASM_H_
|
|
#define XENIA_FRONTEND_PPC_PPC_DISASM_H_
|
|
|
|
#include "xenia/cpu/frontend/ppc/ppc_instr.h"
|
|
#include "poly/string_buffer.h"
|
|
|
|
namespace xe {
|
|
namespace cpu {
|
|
namespace frontend {
|
|
namespace ppc {
|
|
|
|
int DisasmPPC(InstrData& i, poly::StringBuffer* str);
|
|
|
|
} // namespace ppc
|
|
} // namespace frontend
|
|
} // namespace cpu
|
|
} // namespace xe
|
|
|
|
#endif // XENIA_FRONTEND_PPC_PPC_DISASM_H_
|