aboutsummaryrefslogtreecommitdiff
path: root/saga/x86_32.h
diff options
context:
space:
mode:
authorEugene Sandulenko2004-04-12 21:40:49 +0000
committerEugene Sandulenko2004-04-12 21:40:49 +0000
commitf3d340fb0ce72b9db59b8c701153bc82b595f75e (patch)
treebf250cf3a1e6aee35c7f40d766994b0c2c188e5c /saga/x86_32.h
parent0a0a0c7b0609d8774cef849e7511e7b21d12c5db (diff)
downloadscummvm-rg350-f3d340fb0ce72b9db59b8c701153bc82b595f75e.tar.gz
scummvm-rg350-f3d340fb0ce72b9db59b8c701153bc82b595f75e.tar.bz2
scummvm-rg350-f3d340fb0ce72b9db59b8c701153bc82b595f75e.zip
WIP for SAGA engine.
o text formatting is not consistent with rules, just indent utility is too dumb for that o it does not use OSystem, i.e. it runs on direct SDL calls o it may not even compile on your box o if you enable it, expect zillions of warnings o no sound Now it runs ITE intro as reinherit did svn-id: r13564
Diffstat (limited to 'saga/x86_32.h')
-rw-r--r--saga/x86_32.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/saga/x86_32.h b/saga/x86_32.h
new file mode 100644
index 0000000000..503d0cd777
--- /dev/null
+++ b/saga/x86_32.h
@@ -0,0 +1,46 @@
+/****************************************************************************\
+ ____ ___ _ _ _
+| _ \ ___|_ _|_ __ | |__ ___ _ __(_) |_
+| |_) / _ \| || '_ \| '_ \ / _ \ '__| | __|
+| _ < __/| || | | | | | | __/ | | | |_
+|_| \_\___|___|_| |_|_| |_|\___|_| |_|\__|
+
+ ----------------------------------------------------------------------------
+ Project: ReInherit Engine
+ Version: .1a
+
+ The ReInherit Engine is (C)2000-2001 by Daniel Balsom
+ This code is subject to the terms and conditions of the General Public
+ License (GPL).
+
+ ----------------------------------------------------------------------------
+
+ File: x86-32.h
+ Revision: $Revision$
+
+ Description:
+
+ Architecture-specific typedefs for Intel(tm) compatible 32 bit processors
+
+ Notes:
+
+\****************************************************************************/
+#ifndef R_ARCH_H
+#define R_ARCH_H
+
+namespace Saga {
+
+#define R_LITTLE_ENDIAN
+
+typedef unsigned int R_UINT32;
+typedef signed int R_SINT32;
+
+typedef unsigned short R_UINT16;
+typedef signed short R_SINT16;
+
+typedef unsigned char R_UINT8;
+typedef signed char R_SINT8;
+
+} // End of namespace Saga
+
+#endif /* R_ARCH_H */