summaryrefslogtreecommitdiffstats
path: root/src/core/arm/skyeye_common/skyeye_types.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-01-04 09:18:16 +0100
committerLioncash <mathew1800@gmail.com>2015-01-04 18:34:02 +0100
commit41e1cb12e5060dba37071edb5b511abaf06dc9cf (patch)
treeb73b2a1f3348cb78c34674a3d705239aaf287ebf /src/core/arm/skyeye_common/skyeye_types.h
parentMerge pull request #403 from yuriks/shutdown-system (diff)
downloadyuzu-41e1cb12e5060dba37071edb5b511abaf06dc9cf.tar
yuzu-41e1cb12e5060dba37071edb5b511abaf06dc9cf.tar.gz
yuzu-41e1cb12e5060dba37071edb5b511abaf06dc9cf.tar.bz2
yuzu-41e1cb12e5060dba37071edb5b511abaf06dc9cf.tar.lz
yuzu-41e1cb12e5060dba37071edb5b511abaf06dc9cf.tar.xz
yuzu-41e1cb12e5060dba37071edb5b511abaf06dc9cf.tar.zst
yuzu-41e1cb12e5060dba37071edb5b511abaf06dc9cf.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/skyeye_common/skyeye_types.h30
1 files changed, 3 insertions, 27 deletions
diff --git a/src/core/arm/skyeye_common/skyeye_types.h b/src/core/arm/skyeye_common/skyeye_types.h
index e7f022f19..fc7d8d922 100644
--- a/src/core/arm/skyeye_common/skyeye_types.h
+++ b/src/core/arm/skyeye_common/skyeye_types.h
@@ -22,34 +22,10 @@
* 12/16/2006 Michael.Kang <blackfin.kang@gmail.com>
*/
-#ifndef __SKYEYE_TYPES_H
-#define __SKYEYE_TYPES_H
+#pragma once
-#include <stdint.h>
-
-/*default machine word length */
-
-#ifndef __BEOS__
-/* To avoid the type conflict with the qemu */
-#ifndef QEMU
-typedef uint8_t uint8;
-typedef uint16_t uint16;
-typedef uint32_t uint32;
-typedef uint64_t uint64;
-
-typedef int8_t sint8;
-typedef int16_t sint16;
-typedef int32_t sint32;
-typedef int64_t sint64;
-#endif
+#include <cstdint>
typedef uint32_t address_t;
-typedef uint32_t uinteger_t;
-typedef int32_t integer_t;
-
typedef uint32_t physical_address_t;
-typedef uint32_t generic_address_t;
-
-#endif
-
-#endif
+typedef uint32_t generic_address_t;