summaryrefslogtreecommitdiffstats
path: root/include/asm-mips64/asm.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1999-12-04 03:58:56 +0000
committerRalf Baechle <ralf@linux-mips.org>1999-12-04 03:58:56 +0000
commit1d67e90f19a7acfd9a05dc59678e7d0c5090bd0d (patch)
tree357efc7b93f8f5102110d20d293f41360ec212fc /include/asm-mips64/asm.h
parentaea27b2e18d69af87e673972246e66657b4fa274 (diff)
Merge with Linux 2.3.21.
Diffstat (limited to 'include/asm-mips64/asm.h')
-rw-r--r--include/asm-mips64/asm.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/asm-mips64/asm.h b/include/asm-mips64/asm.h
index c25e118a8..fe616eb08 100644
--- a/include/asm-mips64/asm.h
+++ b/include/asm-mips64/asm.h
@@ -1,4 +1,4 @@
-/* $Id$
+/* $Id: asm.h,v 1.1 1999/08/18 23:37:50 ralf Exp $
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
@@ -96,6 +96,17 @@ symbol = value
.set pop; \
TEXT(string)
+/*
+ * Print formated string
+ */
+#define PROM_PRINT(string) \
+ .set push; \
+ .set reorder; \
+ la a0,8f; \
+ jal prom_printf; \
+ .set pop; \
+ TEXT(string)
+
#define TEXT(msg) \
.data; \
8: .asciiz msg; \