xenia-cpu-ppc-tests is now building on linux

This commit is contained in:
DrChat
2017-02-10 23:54:10 -06:00
parent 11ae05155d
commit d43e2c7ff8
21 changed files with 471 additions and 51 deletions

View File

@@ -0,0 +1,24 @@
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2017 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#include "xenia/cpu/stack_walker.h"
#include "xenia/base/logging.h"
namespace xe {
namespace cpu {
std::unique_ptr<StackWalker> StackWalker::Create(
backend::CodeCache* code_cache) {
XELOGD("Stack walker unimplemented on posix");
return nullptr;
}
} // namespace cpu
} // namespace xe