summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1999-08-14 03:18:30 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1999-08-14 03:18:30 +0000
commitffc41e1df10f84ee3a66ec24737c7d5cef928a81 (patch)
tree0074641ce93e55fd399771f3a526582e7066d222 /sys/arch
parente8713b658c97f6b1b033123638be491a422ffcb5 (diff)
more registers to print and play
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/hppa/hppa/db_interface.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/arch/hppa/hppa/db_interface.c b/sys/arch/hppa/hppa/db_interface.c
index 4db4d93ec97..b547e8ac780 100644
--- a/sys/arch/hppa/hppa/db_interface.c
+++ b/sys/arch/hppa/hppa/db_interface.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_interface.c,v 1.6 1999/07/21 04:28:36 mickey Exp $ */
+/* $OpenBSD: db_interface.c,v 1.7 1999/08/14 03:18:29 mickey Exp $ */
/*
* Copyright (c) 1999 Michael Shalayeff
@@ -94,11 +94,16 @@ struct db_variable db_regs[] = {
{ "r31", (long *)&ddb_regs.tf_r31, FCN_NULL },
{ "sar", (long *)&ddb_regs.tf_sar, FCN_NULL },
+ { "eirr", (long *)&ddb_regs.tf_eirr, FCN_NULL },
{ "eiem", (long *)&ddb_regs.tf_eiem, FCN_NULL },
{ "iir", (long *)&ddb_regs.tf_iir, FCN_NULL },
{ "isr", (long *)&ddb_regs.tf_isr, FCN_NULL },
{ "ior", (long *)&ddb_regs.tf_ior, FCN_NULL },
{ "ipsw", (long *)&ddb_regs.tf_ipsw, FCN_NULL },
+ { "iisqh", (long *)&ddb_regs.tf_iisq_head, FCN_NULL },
+ { "iioqh", (long *)&ddb_regs.tf_iioq_head, FCN_NULL },
+ { "iisqt", (long *)&ddb_regs.tf_iisq_tail, FCN_NULL },
+ { "iioqt", (long *)&ddb_regs.tf_iioq_tail, FCN_NULL },
{ "sr0", (long *)&ddb_regs.tf_sr0, FCN_NULL },
{ "sr1", (long *)&ddb_regs.tf_sr1, FCN_NULL },
@@ -117,10 +122,6 @@ struct db_variable db_regs[] = {
{ "hptm", (long *)&ddb_regs.tf_hptm, FCN_NULL },
{ "vtop", (long *)&ddb_regs.tf_vtop, FCN_NULL },
{ "cr28", (long *)&ddb_regs.tf_cr28, FCN_NULL },
-#if 0
- u_int ccr; /* cr10 */
- u_int tr2; /* cr26 */
-#endif
};
struct db_variable *db_eregs = db_regs + sizeof(db_regs)/sizeof(db_regs[0]);
int db_active = 0;