1 /* This file is part of the program psim.
4 Copyright (C) 1997, Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 #ifndef _SIM_BASICS_H_
24 #define _SIM_BASICS_H_
27 /* Basic configuration */
33 /* Basic host dependant mess - hopefully <stdio.h> + <stdarg.h> will
34 bring potential conflicts out in the open */
47 /* Some versions of GCC include an attribute operator, define it */
49 #if !defined (__attribute__)
50 #if (!defined(__GNUC__) \
52 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6))
53 #define __attribute__(arg)
59 /* Memory management with an allocator that clears memory before use. */
61 void *zalloc (unsigned long size);
63 #define ZALLOC(TYPE) (TYPE*)zalloc(sizeof (TYPE))
69 /* Global types that code manipulates */
71 typedef struct _device device;
74 /* Address access attributes */
75 typedef enum _access_type {
79 access_read_write = 3,
82 access_write_exec = 6,
83 access_read_write_exec = 7,
87 /* Address attachement types */
88 typedef enum _attach_type {
97 /* Basic definitions - ordered so that nothing calls what comes after
103 #include "ansidecl.h"
104 #include "callback.h"
105 #include "remote-sim.h"
107 #include "sim-config.h"
109 #include "sim-base.h"
110 #include "sim-trace.h"
112 #include "sim-inline.h"
114 #include "sim-types.h"
115 #include "sim-bits.h"
116 #include "sim-endian.h"
118 #endif /* _SIM_BASICS_H_ */