summaryrefslogtreecommitdiff
path: root/sys/arch/m68k
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/m68k')
-rw-r--r--sys/arch/m68k/conf/files.m68k4
-rw-r--r--sys/arch/m68k/include/cpu.h7
2 files changed, 9 insertions, 2 deletions
diff --git a/sys/arch/m68k/conf/files.m68k b/sys/arch/m68k/conf/files.m68k
index 48c49bcf276..85fc24a52bb 100644
--- a/sys/arch/m68k/conf/files.m68k
+++ b/sys/arch/m68k/conf/files.m68k
@@ -1,4 +1,4 @@
-# $OpenBSD: files.m68k,v 1.8 1997/07/06 07:46:20 downsj Exp $
+# $OpenBSD: files.m68k,v 1.9 2001/08/25 11:37:26 espie Exp $
# $NetBSD: files.m68k,v 1.18 1997/06/06 23:15:28 veego Exp $
#
file arch/m68k/m68k/db_disasm.c ddb
@@ -16,5 +16,7 @@ file arch/m68k/m68k/random.s
file arch/m68k/m68k/copy.s
file arch/m68k/m68k/bcopy.s
file arch/m68k/m68k/copypage.s
+file arch/m68k/m68k/regdump.c
+
include "../../../compat/m68k4k/files.m68k4k"
diff --git a/sys/arch/m68k/include/cpu.h b/sys/arch/m68k/include/cpu.h
index f4e33bc9bfc..2723dcb9169 100644
--- a/sys/arch/m68k/include/cpu.h
+++ b/sys/arch/m68k/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.5 2001/08/20 20:24:07 miod Exp $ */
+/* $OpenBSD: cpu.h,v 1.6 2001/08/25 11:37:26 espie Exp $ */
/* $NetBSD: cpu.h,v 1.3 1997/02/02 06:56:57 thorpej Exp $ */
/*
@@ -205,6 +205,11 @@ u_long getsfc __P((void));
int fusword __P((caddr_t));
int susword __P((caddr_t, u_short));
+/* regdump.c */
+struct trapframe;
+void regdump __P((struct trapframe *, int));
+
+
#endif /* _KERNEL */
#endif /* _M68K_CPU_H_ */