summaryrefslogtreecommitdiffstats
path: root/src/core/arm/skyeye_common/skyeye_defs.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-04-08 05:03:08 +0200
committerbunnei <bunneidev@gmail.com>2015-04-08 05:03:08 +0200
commit114126b2166d302b7c6a11405ac390f7c7e07dad (patch)
tree9cc7175f6500080417cd09c01babf7c86dd46f1d /src/core/arm/skyeye_common/skyeye_defs.h
parentMerge pull request #676 from purpasmart96/ir_service_refc (diff)
parentdyncom: Remove unnecessary enum and typedef (diff)
downloadyuzu-114126b2166d302b7c6a11405ac390f7c7e07dad.tar
yuzu-114126b2166d302b7c6a11405ac390f7c7e07dad.tar.gz
yuzu-114126b2166d302b7c6a11405ac390f7c7e07dad.tar.bz2
yuzu-114126b2166d302b7c6a11405ac390f7c7e07dad.tar.lz
yuzu-114126b2166d302b7c6a11405ac390f7c7e07dad.tar.xz
yuzu-114126b2166d302b7c6a11405ac390f7c7e07dad.tar.zst
yuzu-114126b2166d302b7c6a11405ac390f7c7e07dad.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/skyeye_common/skyeye_defs.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/core/arm/skyeye_common/skyeye_defs.h b/src/core/arm/skyeye_common/skyeye_defs.h
index edf6097e0..94b02459d 100644
--- a/src/core/arm/skyeye_common/skyeye_defs.h
+++ b/src/core/arm/skyeye_common/skyeye_defs.h
@@ -11,28 +11,3 @@ struct cpu_config_t
u32 cpu_mask; // cpu_val's mask.
u32 cachetype; // CPU cache type
};
-
-enum {
- // No exception
- No_exp = 0,
- // Memory allocation exception
- Malloc_exp,
- // File open exception
- File_open_exp,
- // DLL open exception
- Dll_open_exp,
- // Invalid argument exception
- Invarg_exp,
- // Invalid module exception
- Invmod_exp,
- // wrong format exception for config file parsing
- Conf_format_exp,
- // some reference excess the predefiend range. Such as the index out of array range
- Excess_range_exp,
- // Can not find the desirable result
- Not_found_exp,
- // Unknown exception
- Unknown_exp
-};
-
-typedef u32 addr_t;