Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2010-06-25 00:38:05 +0400
committerKevin Buettner <kevinb@redhat.com>2010-06-25 00:38:05 +0400
commit711d4704cc14f5324f41a156bd08ec1f321afbd5 (patch)
treec4cdef1625bd754ddd5a051eb5509642b4cc8954 /include/gdb
parent30bbc55ee2759621c00bfb4d3382dc0da9ee3bc6 (diff)
Add "acc" register. Revise register order and names.
Diffstat (limited to 'include/gdb')
-rw-r--r--include/gdb/ChangeLog5
-rw-r--r--include/gdb/sim-rx.h9
2 files changed, 10 insertions, 4 deletions
diff --git a/include/gdb/ChangeLog b/include/gdb/ChangeLog
index 54815ec7d..b4d2c68bd 100644
--- a/include/gdb/ChangeLog
+++ b/include/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2010-06-24 Kevin Buettner <kevinb@redhat.com>
+
+ * sim-rx.h (sim_rx_regnum): Add sim_rx_acc_regnum. Adjust
+ register order.
+
2010-04-13 Mike Frysinger <vapier@gentoo.org>
* callback.h: Strip PARAMS from prototypes.
diff --git a/include/gdb/sim-rx.h b/include/gdb/sim-rx.h
index 2a7988bf1..e3ee1d3a4 100644
--- a/include/gdb/sim-rx.h
+++ b/include/gdb/sim-rx.h
@@ -40,15 +40,16 @@ enum sim_rx_regnum
sim_rx_r13_regnum,
sim_rx_r14_regnum,
sim_rx_r15_regnum,
- sim_rx_isp_regnum,
sim_rx_usp_regnum,
- sim_rx_intb_regnum,
- sim_rx_pc_regnum,
+ sim_rx_isp_regnum,
sim_rx_ps_regnum,
- sim_rx_bpc_regnum,
+ sim_rx_pc_regnum,
+ sim_rx_intb_regnum,
sim_rx_bpsw_regnum,
+ sim_rx_bpc_regnum,
sim_rx_fintv_regnum,
sim_rx_fpsw_regnum,
+ sim_rx_acc_regnum,
sim_rx_num_regs
};