diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2002-12-26 06:14:43 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2002-12-26 06:14:43 +0000 |
commit | d9633de92c657130fed87e162b4cdfc329044bc5 (patch) | |
tree | 755c09e64045fc9a76253af293a7e49bda2c86fd /include | |
parent | 6e29a31e99a8e1fd42e392cf967fe8d57908b7e9 (diff) | |
download | newlib-d9633de92c657130fed87e162b4cdfc329044bc5.zip newlib-d9633de92c657130fed87e162b4cdfc329044bc5.tar.gz newlib-d9633de92c657130fed87e162b4cdfc329044bc5.tar.bz2 |
* sim-h8300.h: Remove ^M.
Diffstat (limited to 'include')
-rw-r--r-- | include/gdb/ChangeLog | 4 | ||||
-rw-r--r-- | include/gdb/sim-h8300.h | 66 |
2 files changed, 37 insertions, 33 deletions
diff --git a/include/gdb/ChangeLog b/include/gdb/ChangeLog index c39a7a0..b36341d 100644 --- a/include/gdb/ChangeLog +++ b/include/gdb/ChangeLog @@ -1,3 +1,7 @@ +2002-12-26 Kazu Hirata <kazu@cs.umass.edu> + + * sim-h8300.h: Remove ^M. + 2002-07-29 Andrey Volkov <avolkov@transas.com> * sim-h8300.h: Rename all enums from H8300_ to SIM_H8300_ diff --git a/include/gdb/sim-h8300.h b/include/gdb/sim-h8300.h index ecc6883..246370ae 100644 --- a/include/gdb/sim-h8300.h +++ b/include/gdb/sim-h8300.h @@ -1,36 +1,36 @@ -/* This file defines the interface between the h8300 simulator and gdb.
- Copyright (C) 2002 Free Software Foundation, Inc.
-
-This file is part of GDB.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
+/* This file defines the interface between the h8300 simulator and gdb. + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GDB. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#if !defined (SIM_H8300_H)
-#define SIM_H8300_H
-
-#ifdef __cplusplus
+#if !defined (SIM_H8300_H) +#define SIM_H8300_H + +#ifdef __cplusplus extern "C" { //} #endif -
-/* The simulator makes use of the following register information. */
-
+ +/* The simulator makes use of the following register information. */ + enum sim_h8300_regs { /* Registers common to all the H8 variants. */ /* Start here: */ - SIM_H8300_R0_REGNUM, + SIM_H8300_R0_REGNUM, SIM_H8300_R1_REGNUM, SIM_H8300_R2_REGNUM, SIM_H8300_R3_REGNUM, @@ -42,8 +42,8 @@ extern "C" { //} SIM_H8300_CCR_REGNUM, /* Contains processor status */ SIM_H8300_PC_REGNUM, /* Contains program counter */ /* End here */ - - SIM_H8300_EXR_REGNUM, /* Contains extended processor status + + SIM_H8300_EXR_REGNUM, /* Contains extended processor status H8S and higher */ SIM_H8300_MACL_REGNUM, /* Lower part of MAC register (26xx only)*/ SIM_H8300_MACH_REGNUM, /* High part of MAC register (26xx only) */ @@ -55,11 +55,11 @@ extern "C" { //} enum { - SIM_H8300_ARG_FIRST_REGNUM = SIM_H8300_R0_REGNUM, /* first reg in which an arg - may be passed */ - SIM_H8300_ARG_LAST_REGNUM = SIM_H8300_R3_REGNUM, /* last reg in which an arg + SIM_H8300_ARG_FIRST_REGNUM = SIM_H8300_R0_REGNUM, /* first reg in which an arg may be passed */ - SIM_H8300_FP_REGNUM = SIM_H8300_R6_REGNUM, /* Contain address of executing + SIM_H8300_ARG_LAST_REGNUM = SIM_H8300_R3_REGNUM, /* last reg in which an arg + may be passed */ + SIM_H8300_FP_REGNUM = SIM_H8300_R6_REGNUM, /* Contain address of executing stack frame */ SIM_H8300_SP_REGNUM = SIM_H8300_R7_REGNUM /* Contains address of top of stack */ }; @@ -71,8 +71,8 @@ extern "C" { //} SIM_H8300_NUM_REGS = 16 }; -#ifdef __cplusplus
+#ifdef __cplusplus } #endif -
+ #endif /* SIM_H8300_H */ |