summaryrefslogtreecommitdiff
path: root/sys/arch/m68k/include/cpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/m68k/include/cpu.h')
-rw-r--r--sys/arch/m68k/include/cpu.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/sys/arch/m68k/include/cpu.h b/sys/arch/m68k/include/cpu.h
index 42f491b3c8d..5fc92af1db8 100644
--- a/sys/arch/m68k/include/cpu.h
+++ b/sys/arch/m68k/include/cpu.h
@@ -1,5 +1,5 @@
-/* $OpenBSD: cpu.h,v 1.1 1996/10/14 00:59:24 briggs Exp $ */
-/* $NetBSD: cpu.h,v 1.2 1996/09/12 02:52:34 thorpej Exp $ */
+/* $OpenBSD: cpu.h,v 1.2 1997/02/10 11:11:48 downsj Exp $ */
+/* $NetBSD: cpu.h,v 1.3 1997/02/02 06:56:57 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -188,4 +188,14 @@ extern int mmutype; /* MMU on this host */
#define CACHE60_ON (CACHE40_ON|IC60_CABC|IC60_EBC|DC60_ESB)
#define CACHE60_OFF (CACHE40_OFF|IC60_CABC)
+#ifdef _KERNEL
+void copypage __P((void *fromaddr, void *toaddr));
+void zeropage __P((void *addr));
+#ifdef MAPPEDCOPY
+int mappedcopyin __P((void *fromp, void *top, size_t count));
+int mappedcopyout __P((void *fromp, void *top, size_t count));
+extern u_int mappedcopysize;
+#endif /* MAPPEDCOPY */
+#endif /* _KERNEL */
+
#endif /* _M68K_CPU_H_ */