]> sourceware.org Git - newlib-cygwin.git/commitdiff
2005-04-19 Eric Christopher <echristo@redhat.com>
authorEric Christopher <echristo@gmail.com>
Tue, 19 Apr 2005 18:03:18 +0000 (18:03 +0000)
committerEric Christopher <echristo@gmail.com>
Tue, 19 Apr 2005 18:03:18 +0000 (18:03 +0000)
* mips/regs.S: Sign extend constants for mips64 and unify
        address handling.

libgloss/ChangeLog
libgloss/mips/regs.S

index 8cbffb260c6f144ee26541f1df600723ad6c40ef..1ccc41255deaaf2aadf303765174c18c4b7aa007 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-19  Eric Christopher  <echristo@redhat.com>
+
+       * mips/regs.S: Sign extend constants for mips64 and unify
+        address handling.
+
 2005-04-12  Shaun Jackman  <sjackman@gmail.com>
 
        * libgloss/arm/Makefile.in (RDPMON_BSP): librdpmon.a was empty due 
index 17cc15a753ad7b5bf5e1566c6b4520f677548d0e..bdf933f138a3f3e03fb5d0ff7cecb3eb450d6780 100644 (file)
 #define fp1    $f1
 
 /* Useful memory constants: */
-#define K0BASE         0x80000000
 #ifndef __mips64
+#define K0BASE          0x80000000
 #define K1BASE         0xA0000000
 #define K0BASE_ADDR    ((char *)K0BASE)
 #define K1BASE_ADDR    ((char *)K1BASE)
 #else
-#define K1BASE         0xFFFFFFFFA0000000LL
+#define K0BASE          0xFFFFFFFF80000000
+#define K1BASE         0xFFFFFFFFA0000000
 #define K0BASE_ADDR    ((char *)0xFFFFFFFF80000000LL)
-#define K1BASE_ADDR    ((char *)K1BASE)
+#define K1BASE_ADDR    ((char *)0xFFFFFFFFA0000000LL)
 #endif
 
 #define PHYS_TO_K1(a)   ((unsigned)(a) | K1BASE)
This page took 0.035298 seconds and 5 git commands to generate.