mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
37 lines
1.1 KiB
C
37 lines
1.1 KiB
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_CPU_CPU_PRIVATE_H_
|
|
#define XENIA_CPU_CPU_PRIVATE_H_
|
|
|
|
#include <gflags/gflags.h>
|
|
|
|
DECLARE_string(cpu);
|
|
|
|
DECLARE_string(load_module_map);
|
|
|
|
DECLARE_bool(debug);
|
|
DECLARE_bool(disassemble_functions);
|
|
|
|
DECLARE_bool(trace_functions);
|
|
DECLARE_bool(trace_function_coverage);
|
|
DECLARE_bool(trace_function_references);
|
|
DECLARE_bool(trace_function_data);
|
|
|
|
DECLARE_bool(validate_hir);
|
|
|
|
DECLARE_uint64(break_on_instruction);
|
|
DECLARE_int32(break_condition_gpr);
|
|
DECLARE_uint64(break_condition_value);
|
|
DECLARE_bool(break_condition_truncate);
|
|
|
|
DECLARE_bool(break_on_debugbreak);
|
|
|
|
#endif // XENIA_CPU_CPU_PRIVATE_H_
|