diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-09-17 19:15:32 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-09-17 19:15:32 +0000 |
commit | 6a10e81fbad0827c1ebc1ca38b0dc440f12b7424 (patch) | |
tree | 9935abb080f092c5756c2b5d4c8b651eb75f197d | |
parent | d8655292e899ab398e3405e3560bac8e6a7d41af (diff) |
print out the ccr and rctr
-rw-r--r-- | sys/arch/hppa/hppa/db_interface.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/hppa/hppa/db_interface.c b/sys/arch/hppa/hppa/db_interface.c index f235af135ce..e55016952b6 100644 --- a/sys/arch/hppa/hppa/db_interface.c +++ b/sys/arch/hppa/hppa/db_interface.c @@ -1,7 +1,7 @@ -/* $OpenBSD: db_interface.c,v 1.24 2002/08/13 03:44:48 mickey Exp $ */ +/* $OpenBSD: db_interface.c,v 1.25 2002/09/17 19:15:31 mickey Exp $ */ /* - * Copyright (c) 1999-2000 Michael Shalayeff + * Copyright (c) 1999-2002 Michael Shalayeff * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -92,6 +92,8 @@ struct db_variable db_regs[] = { { "r31", (long *)&ddb_regs.tf_r31, FCN_NULL }, { "sar", (long *)&ddb_regs.tf_sar, FCN_NULL }, + { "rctr", (long *)&ddb_regs.tf_rctr, FCN_NULL }, + { "ccr", (long *)&ddb_regs.tf_ccr, 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 }, |