sim: rename tconfig.in to tconfig.h
[external/binutils.git] / sim / m32r / tconfig.h
1 /* M32R target configuration file.  -*- C -*- */
2
3 #ifndef M32R_TCONFIG_H
4 #define M32R_TCONFIG_H
5
6 /* Define this if the simulator can vary the size of memory.
7    See the xxx simulator for an example.
8    This enables the `-m size' option.
9    The memory size is stored in STATE_MEM_SIZE.  */
10 /* Not used for M32R since we use the memory module.  */
11 /* #define SIM_HAVE_MEM_SIZE */
12
13 /* See sim-hload.c.  We properly handle LMA.  */
14 #define SIM_HANDLES_LMA 1
15
16 /* For MSPR support.  FIXME: revisit.  */
17 #define WITH_DEVICES 1
18
19 #if 0
20 /* Enable watchpoints.  */
21 #define WITH_WATCHPOINTS 1
22 #endif
23
24 /* Define this to enable the intrinsic breakpoint mechanism. */
25 /* FIXME: may be able to remove SIM_HAVE_BREAKPOINT since it essentially
26    duplicates ifdef SIM_BREAKPOINT (right?) */
27 #if 0
28 #define SIM_HAVE_BREAKPOINTS
29 #define SIM_BREAKPOINT { 0x10, 0xf1 }
30 #define SIM_BREAKPOINT_SIZE 2
31 #endif
32
33 /* This is a global setting.  Different cpu families can't mix-n-match -scache
34    and -pbb.  However some cpu families may use -simple while others use
35    one of -scache/-pbb.  */
36 #define WITH_SCACHE_PBB 1
37
38 #endif /* M32R_TCONFIG_H */