Moving alloy/ into xenia/cpu/ to start simplifying things.

This commit is contained in:
Ben Vanik
2015-03-24 07:46:18 -07:00
parent 59395318f3
commit 29912f44c0
519 changed files with 2246 additions and 2296 deletions

View File

@@ -10,16 +10,14 @@
#ifndef XENIA_KERNEL_UTIL_SHIM_UTILS_H_
#define XENIA_KERNEL_UTIL_SHIM_UTILS_H_
#include "alloy/frontend/ppc/ppc_context.h"
#include "xenia/cpu/frontend/ppc/ppc_context.h"
#include "xenia/common.h"
#include "xenia/export_resolver.h"
namespace xe {
namespace kernel {
using PPCContext = alloy::frontend::ppc::PPCContext;
using PPCContext = xe::cpu::frontend::ppc::PPCContext;
#define SHIM_CALL void _cdecl
#define SHIM_SET_MAPPING(library_name, export_name, shim_data) \
@@ -62,5 +60,4 @@ using PPCContext = alloy::frontend::ppc::PPCContext;
} // namespace kernel
} // namespace xe
#endif // XENIA_KERNEL_UTIL_SHIM_UTILS_H_

View File

@@ -21,8 +21,6 @@
#include "third_party/mspack/mspack.h"
#include "third_party/pe/pe_image.h"
// using namespace alloy;
// TODO(benvanik): remove.
#define XEEXPECTZERO(expr) \
if ((expr) != 0) { \