diff options
author | 2002-09-17 19:15:31 +0000 | |
---|---|---|
committer | 2002-09-17 19:15:31 +0000 | |
commit | d635d979c805772dcfc767b1e91a552102bbb5b5 (patch) | |
tree | 0626be0358908e9539fcf51ce968dddfff883f40 | |
parent | add ad1981a id; from hunter@dg.net.ua (diff) | |
download | wireguard-openbsd-d635d979c805772dcfc767b1e91a552102bbb5b5.tar.xz wireguard-openbsd-d635d979c805772dcfc767b1e91a552102bbb5b5.zip |
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 }, |