1 /* Parameters for execution on ES-1800 emulator for 68000.
2 The code was originally written by Johan Holmberg TT/SJ Ericsson Telecom
3 AB and later modified by Johan Henriksson TT/SJ. It was adapted to GDB 4.0
5 Copyright 1986, 1987, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
7 This file is part of GDB.
9 GDB is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 1, or (at your option)
14 GDB is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #define GDBINIT_FILENAME ".esgdbinit"
25 #define DEFAULT_PROMPT "(esgdb) "
27 #include "m68k/tm-m68k.h"
29 /* Longjmp stuff borrowed from sun3 configuration. Don't know if correct.
31 /* Offsets (in target ints) into jmp_buf. Not defined by Sun, but at least
32 documented in a comment in <machine/setjmp.h>! */
34 #define JB_ELEMENT_SIZE 4
53 /* Figure out where the longjmp will land. Slurp the args out of the stack.
54 We expect the first arg to be a pointer to the jmp_buf structure from which
55 we extract the pc (JB_PC) that we will land at. The pc is copied into ADDR.
56 This routine returns true on success */
58 #define GET_LONGJMP_TARGET(ADDR) get_longjmp_target(ADDR)
59 extern int get_longjmp_target PARAMS ((CORE_ADDR *));