Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/mips/regs.S')
-rw-r--r--libgloss/mips/regs.S4
1 files changed, 4 insertions, 0 deletions
diff --git a/libgloss/mips/regs.S b/libgloss/mips/regs.S
index cf1f9d49e..7ade6e856 100644
--- a/libgloss/mips/regs.S
+++ b/libgloss/mips/regs.S
@@ -56,8 +56,12 @@
#define K0BASE 0x80000000
#ifndef __mips64
#define K1BASE 0xA0000000
+#define K0BASE_ADDR ((char *)K0BASE)
+#define K1BASE_ADDR ((char *)K1BASE)
#else
#define K1BASE 0xFFFFFFFFA0000000LL
+#define K0BASE_ADDR ((char *)0xFFFFFFFF80000000LL)
+#define K1BASE_ADDR ((char *)K1BASE)
#endif
#define PHYS_TO_K1(a) ((unsigned)(a) | K1BASE)