Add option to make options inline
[external/binutils.git] / sim / ppc / inline.c
1 /*  This file is part of the program psim.
2
3     Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14  
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  
19     */
20
21
22 #ifndef _INLINE_C_
23 #define _INLINE_C_
24
25 #if BITS_INLINE
26 #include "bits.c"
27 #endif
28
29 #if SIM_ENDIAN_INLINE
30 #include "sim-endian.c"
31 #endif
32
33 #if ICACHE_INLINE
34 #include "icache.c"
35 #endif
36
37 #if CORE_INLINE
38 #include "corefile.c"
39 #endif
40
41 #if VM_INLINE
42 #include "vm.c"
43 #endif
44
45 #if CPU_INLINE
46 #include "cpu.c"
47 #endif
48
49 #if EVENTS_INLINE
50 #include "events.c"
51 #endif
52
53 #if MODEL_INLINE
54 #include "model.c"
55 #endif
56
57 #if OPTIONS_INLINE
58 #include "options.c"
59 #endif
60
61 #if FUNCTION_UNIT_INLINE
62 #include "function_unit.c"
63 #endif
64
65 #if MON_INLINE
66 #include "mon.c"
67 #endif
68
69 #if REGISTERS_INLINE
70 #include "registers.c"
71 #endif
72
73 #if INTERRUPTS_INLINE
74 #include "interrupts.c"
75 #endif
76
77 #if DEVICE_TREE_INLINE
78 #include "device_tree.c"
79 #endif
80
81 #if DEVICES_INLINE
82 #include "devices.c"
83 #endif
84
85 #if SPREG_INLINE
86 #include "spreg.c"
87 #endif
88
89 #if SEMANTICS_INLINE
90 #include "semantics.c"
91 #endif
92
93 #if IDECODE_INLINE
94 #include "idecode.c"
95 #endif
96
97 #endif