Get the ol' Dreamcast target building and sort of booting again.
[newos.git] / include / arch / sh4 / types.h
blob56f4c5e1685c5681630615329836684a59631222
1 /*
2 ** Copyright 2001-2006, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
4 */
5 #ifndef _SH4_TYPES_H
6 #define _SH4_TYPES_H
8 typedef volatile unsigned long long vuint64;
9 typedef unsigned long long uint64;
10 typedef volatile long long vint64;
11 typedef long long int64;
12 typedef volatile unsigned int vuint32;
13 typedef unsigned int uint32;
14 typedef volatile int vint32;
15 typedef int int32;
16 typedef volatile unsigned short vuint16;
17 typedef unsigned short uint16;
18 typedef volatile short vint16;
19 typedef short int16;
20 typedef volatile unsigned char vuint8;
21 typedef unsigned char uint8;
22 typedef volatile char vint8;
23 typedef signed char int8;
25 #endif