Broken, incomplete, but need to move forward with rewrite.

This commit is contained in:
Ben Vanik
2013-04-21 12:34:20 -07:00
parent 4987147055
commit b018b6fe56
51 changed files with 3455 additions and 2397 deletions

View File

@@ -0,0 +1,37 @@
/**
******************************************************************************
* 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_LLVMBE_LLVM_LIBRARY_LINKER_H_
#define XENIA_CPU_LLVMBE_LLVM_LIBRARY_LINKER_H_
#include <xenia/common.h>
#include <xenia/core.h>
#include <xenia/cpu/library_linker.h>
namespace xe {
namespace cpu {
namespace llvmbe {
class LLVMLibraryLinker : public LibraryLinker {
public:
LLVMLibraryLinker(xe_memory_ref memory,
kernel::ExportResolver* export_resolver);
virtual ~LLVMLibraryLinker();
};
} // namespace llvmbe
} // namespace cpu
} // namespace xe
#endif // XENIA_CPU_LLVMBE_LLVM_LIBRARY_LINKER_H_