summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/include/asm.h
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2001-10-28 00:58:30 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2001-10-28 00:58:30 +0000
commit5ee6c68ff158d9a02a87401bd468e0269476b731 (patch)
tree2f5e598dc3ceb07904c60a4b7c409d27e5a0c340 /sys/arch/mvme88k/include/asm.h
parent8584646f48809d22fe10939a0372642cd4b7ea40 (diff)
Use the same pipeline flush instruction everywhere.
Diffstat (limited to 'sys/arch/mvme88k/include/asm.h')
-rw-r--r--sys/arch/mvme88k/include/asm.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/include/asm.h b/sys/arch/mvme88k/include/asm.h
index b43bc8b1d1e..00336ad80c3 100644
--- a/sys/arch/mvme88k/include/asm.h
+++ b/sys/arch/mvme88k/include/asm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: asm.h,v 1.14 2001/09/21 02:19:31 miod Exp $ */
+/* $OpenBSD: asm.h,v 1.15 2001/10/28 00:58:29 miod Exp $ */
/*
* Mach Operating System
@@ -136,11 +136,14 @@
* will never actually take the trap).
*/
#if 0
-#define FLUSH_PIPELINE tcnd ne0, r0, 0
+#define FLUSH_PIPELINE tcnd ne0, r0, 0
+#define FLUSH_PIPELINE_STRING "tcnd ne0, r0, 0"
#else
-#define FLUSH_PIPELINE tb1 0, r0, 0
+#define FLUSH_PIPELINE tb1 0, r0, 0
+#define FLUSH_PIPELINE_STRING "tb1 0, r0, 0"
#endif
-#define NOP or r0, r0, r0
+#define NOP or r0, r0, r0
+#define NOP_STRING "or r0, r0, r0"
/*
* Useful in some situations.