[Scummvm-cvs-logs] CVS: scummvm scummsys.h,1.16,1.17

Ludvig Strigeus strigeus at users.sourceforge.net
Sat Feb 2 06:01:42 CET 2002


Update of /cvsroot/scummvm/scummvm
In directory usw-pr-cvs1:/tmp/cvs-serv11550

Modified Files:
	scummsys.h 
Log Message:
sega dreamcast support in scummsys.h

Index: scummsys.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scummsys.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** scummsys.h	2002/01/23 17:26:01	1.16
--- scummsys.h	2002/02/02 14:00:43	1.17
***************
*** 117,120 ****
--- 117,144 ----
  #endif
  
+ #elif defined(__DC__)
+ 
+ #define scumm_stricmp strcasecmp
+ #define CHECK_HEAP
+ #define SCUMM_LITTLE_ENDIAN
+ #define SCUMM_NEED_ALIGNMENT
+ 
+ #define FORCEINLINE inline
+ #define NORETURN __attribute__((__noreturn__))
+ #define GCC_PACK __attribute__((packed))
+ #define CDECL
+ 
+ typedef unsigned char byte;
+ typedef unsigned char uint8;
+ typedef unsigned short uint16;
+ typedef unsigned long uint32;
+ typedef unsigned int uint;
+ typedef signed char int8;
+ typedef signed short int16;
+ typedef signed long int32;
+ 
+ #define START_PACK_STRUCTS pack (push,1)
+ #define END_PACK_STRUCTS   pack(pop)
+ 
  #else
  #error No system type defined





More information about the Scummvm-git-logs mailing list