Browse Source

* endian directive for PowerPC fixed

florian 23 years ago
parent
commit
b6fe4bdebd
1 changed files with 7 additions and 4 deletions
  1. 7 4
      rtl/inc/system.inc

+ 7 - 4
rtl/inc/system.inc

@@ -114,7 +114,7 @@ Procedure Rewrite(var f : TypedFile); [INTERNPROC: In_Rewrite_TypedFile];
   {$ifdef SYSPROCDEFINED}
     {$Error Can't determine processor type !}
   {$endif}
-  {$fatal !!!! Fix endian directive} 
+  {$fatal ENDIAN_BIG}
   {$i powerpc.inc}  { Case dependent, don't change }
   {$define SYSPROCDEFINED}
 {$endif powerpc}
@@ -132,7 +132,7 @@ Procedure Rewrite(var f : TypedFile); [INTERNPROC: In_Rewrite_TypedFile];
   {$ifdef SYSPROCDEFINED}
     {$Error Can't determine processor type !}
   {$endif}
-  {$define ENDIAN_BIG}
+  {$define ENDIAN_LITTLE}
   {$i ia64.inc}  { Case dependent, don't change }
   {$define SYSPROCDEFINED}
 {$endif iA64}
@@ -755,7 +755,10 @@ end;
 
 {
   $Log$
-  Revision 1.29  2002-07-04 20:40:09  florian
+  Revision 1.30  2002-07-26 16:42:00  florian
+    * endian directive for PowerPC fixed
+
+  Revision 1.29  2002/07/04 20:40:09  florian
     + some x86-64 support added
 
   Revision 1.28  2002/04/21 15:51:50  carl
@@ -856,4 +859,4 @@ end;
   Revision 1.2  2000/07/13 11:33:45  michael
   + removed logs
 
-}
+}