Added XBDM stubs.

This commit is contained in:
gibbed
2017-01-09 04:51:49 -06:00
parent 4ed0068da8
commit d730784efb
9 changed files with 228 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/**
******************************************************************************
* 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_KERNEL_XBDM_XBDM_ORDINALS_H_
#define XENIA_KERNEL_XBDM_XBDM_ORDINALS_H_
#include "xenia/cpu/export_resolver.h"
// Build an ordinal enum to make it easy to lookup ordinals.
#include "xenia/kernel/util/ordinal_table_pre.inc"
namespace ordinals {
enum {
#include "xenia/kernel/xbdm/xbdm_table.inc"
};
} // namespace ordinals
#include "xenia/kernel/util/ordinal_table_post.inc"
#endif // XENIA_KERNEL_XBDM_XBDM_ORDINALS_H_