OSDN Git Service

modified: utilsrc/src/Admin/Makefile
[eos/others.git] / utilsrc / srcX86MAC64 / Admin / gdb-7.7.1 / sim / arm / dbg_conf.h
1 /*  dbg_conf.h -- ARMulator debug interface:  ARM6 Instruction Emulator.
2     Copyright (C) 1994 Advanced RISC Machines Ltd.
3  
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 3 of the License, or
7     (at your option) any later version.
8  
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13  
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, see <http://www.gnu.org/licenses/>. */
16
17 #ifndef Dbg_Conf__h
18
19 #define Dbg_Conf__h
20
21 typedef struct Dbg_ConfigBlock
22 {
23   int bytesex;
24   long memorysize;
25   int serialport;               /*) remote connection parameters */
26   int seriallinespeed;          /*) (serial connection) */
27   int parallelport;             /*) ditto */
28   int parallellinespeed;        /*) (parallel connection) */
29   int processor;                /* processor the armulator is to emulate (eg ARM60) */
30   int rditype;                  /* armulator / remote processor */
31   int drivertype;               /* parallel / serial / etc */
32   char const *configtoload;
33   int flags;
34 }
35 Dbg_ConfigBlock;
36
37 #define Dbg_ConfigFlag_Reset 1
38
39 typedef struct Dbg_HostosInterface Dbg_HostosInterface;
40 /* This structure allows access by the (host-independent) C-library support
41    module of armulator or pisd (armos.c) to host-dependent functions for
42    which there is no host-independent interface.  Its contents are unknown
43    to the debugger toolbox.
44    The assumption is that, in a windowed system, fputc(stderr) for example
45    may not achieve the desired effect of the character appearing in some
46    window.
47  */
48
49 #endif