38 lines
940 B
C++
38 lines
940 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_GPU_UCODE_UCODE_DISASSEMBLER_H_
|
|
#define XENIA_GPU_UCODE_UCODE_DISASSEMBLER_H_
|
|
|
|
#include <xenia/core.h>
|
|
|
|
#include <xenia/gpu/ucode/ucode.h>
|
|
|
|
|
|
namespace xe {
|
|
namespace gpu {
|
|
namespace ucode {
|
|
|
|
|
|
class UcodeDisassembler {
|
|
public:
|
|
UcodeDisassembler();
|
|
~UcodeDisassembler();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
} // namespace ucode
|
|
} // namespace gpu
|
|
} // namespace xe
|
|
|
|
|
|
#endif // XENIA_GPU_UCODE_UCODE_DISASSEMBLER_H_
|