| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of SIS. | 2 * This file is part of SIS. |
| 3 * | 3 * |
| 4 * ERC32SIM, SPARC instruction simulator. Copyright (C) 1995 Jiri Gaisler, | 4 * ERC32SIM, SPARC instruction simulator. Copyright (C) 1995 Jiri Gaisler, |
| 5 * European Space Agency | 5 * European Space Agency |
| 6 * | 6 * |
| 7 * This program is free software; you can redistribute it and/or modify it under | 7 * This program is free software; you can redistribute it and/or modify it under |
| 8 * the terms of the GNU General Public License as published by the Free | 8 * the terms of the GNU General Public License as published by the Free |
| 9 * Software Foundation; either version 2 of the License, or (at your option) | 9 * Software Foundation; either version 2 of the License, or (at your option) |
| 10 * any later version. | 10 * any later version. |
| 11 * | 11 * |
| 12 * This program is distributed in the hope that it will be useful, but WITHOUT | 12 * This program is distributed in the hope that it will be useful, but WITHOUT |
| 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | 14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 15 * more details. | 15 * more details. |
| 16 * | 16 * |
| 17 * You should have received a copy of the GNU General Public License along with | 17 * You should have received a copy of the GNU General Public License along with |
| 18 * this program; if not, write to the Free Software Foundation, Inc., 675 | 18 * this program; if not, write to the Free Software Foundation, Inc., 675 |
| 19 * Mass Ave, Cambridge, MA 02139, USA. | 19 * Mass Ave, Cambridge, MA 02139, USA. |
| 20 * | 20 * |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #include "config.h" |
| 23 #include "ansidecl.h" | 24 #include "ansidecl.h" |
| 24 #include "gdb/callback.h" | 25 #include "gdb/callback.h" |
| 25 #include "gdb/remote-sim.h" | 26 #include "gdb/remote-sim.h" |
| 26 | 27 |
| 27 #include "end.h" | 28 #include "end.h" |
| 28 | 29 |
| 29 #define I_ACC_EXC 1 | 30 #define I_ACC_EXC 1 |
| 30 | 31 |
| 31 /* Maximum events in event queue */ | 32 /* Maximum events in event queue */ |
| 32 #define EVENT_MAX 256 | 33 #define EVENT_MAX 256 |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 uint64 icount, int dis)); | 211 uint64 icount, int dis)); |
| 211 | 212 |
| 212 /* float.c */ | 213 /* float.c */ |
| 213 extern int get_accex PARAMS ((void)); | 214 extern int get_accex PARAMS ((void)); |
| 214 extern void clear_accex PARAMS ((void)); | 215 extern void clear_accex PARAMS ((void)); |
| 215 extern void set_fsr PARAMS ((uint32 fsr)); | 216 extern void set_fsr PARAMS ((uint32 fsr)); |
| 216 | 217 |
| 217 /* help.c */ | 218 /* help.c */ |
| 218 extern void usage PARAMS ((void)); | 219 extern void usage PARAMS ((void)); |
| 219 extern void gen_help PARAMS ((void)); | 220 extern void gen_help PARAMS ((void)); |
| OLD | NEW |