1996-11-02 10:04:50 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
2000-04-05 11:30:22 -07:00
|
|
|
/* Damien Doligez, projet Moscova, INRIA Rocquencourt */
|
1996-11-02 10:04:50 -08:00
|
|
|
/* */
|
2000-04-05 11:30:22 -07:00
|
|
|
/* Copyright 2000 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
1999-12-09 10:53:52 -08:00
|
|
|
/* under the terms of the GNU Library General Public License. */
|
1996-11-02 10:04:50 -08:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#define ARCH_BIG_ENDIAN
|
|
|
|
|
1998-07-04 09:51:51 -07:00
|
|
|
#define SIZEOF_INT 4
|
|
|
|
#define SIZEOF_LONG 4
|
|
|
|
#define SIZEOF_SHORT 2
|
|
|
|
|
2000-04-05 11:30:22 -07:00
|
|
|
#if powerc
|
|
|
|
#define ARCH_INT64_TYPE long long
|
|
|
|
#define ARCH_UINT64_TYPE unsigned long long
|
2001-03-07 11:42:25 -08:00
|
|
|
#define ARCH_INT64_PRINTF_FORMAT "ll"
|
2000-04-05 11:30:22 -07:00
|
|
|
#endif
|
|
|
|
|
1999-11-08 11:03:57 -08:00
|
|
|
#if powerc
|
|
|
|
#define CPU_TYPE_STRING "PPC"
|
|
|
|
#else
|
|
|
|
#define CPU_TYPE_STRING "68k"
|
1996-11-02 10:04:50 -08:00
|
|
|
#define THREADED_CODE
|
|
|
|
#endif
|