Author: arty
Date: Thu Apr 19 09:36:21 2007
New Revision: 26415
URL:
http://svn.reactos.org/svn/reactos?rev=26415&view=rev
Log:
Some stragglers.
Modified:
branches/powerpc/reactos/boot/freeldr/bootsect/bootsect.rbuild
branches/powerpc/reactos/boot/freeldr/freeldr/include/mmu.h
branches/powerpc/reactos/boot/freeldr/freeldr/mm/mm.c
Modified: branches/powerpc/reactos/boot/freeldr/bootsect/bootsect.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/powerpc/reactos/boot/freeldr/bo…
==============================================================================
--- branches/powerpc/reactos/boot/freeldr/bootsect/bootsect.rbuild (original)
+++ branches/powerpc/reactos/boot/freeldr/bootsect/bootsect.rbuild Thu Apr 19 09:36:21
2007
@@ -18,9 +18,3 @@
<bootstrap base="loader" nameoncd="isoboot.bin" />
<file>isoboot.asm</file>
</module>
-<if property="ARCH" value="powerpc">
- <module name="ofwldr" type="bootprogram"
payload="freeldr">
- <bootstrap base="loader" nameoncd="boot/ofwldr" />
- <file>ofwboot.s</file>
- </module>
-</if>
Modified: branches/powerpc/reactos/boot/freeldr/freeldr/include/mmu.h
URL:
http://svn.reactos.org/svn/reactos/branches/powerpc/reactos/boot/freeldr/fr…
==============================================================================
--- branches/powerpc/reactos/boot/freeldr/freeldr/include/mmu.h (original)
+++ branches/powerpc/reactos/boot/freeldr/freeldr/include/mmu.h Thu Apr 19 09:36:21 2007
@@ -6,7 +6,10 @@
int GetDEC();
int GetMSR();
int GetPhys( int addr );
+int GetPhysHalf( int addr );
+int GetPhysByte( int addr );
void SetPhys( int addr, int val );
+void SetPhysHalf( int addr, int val );
void SetPhysByte( int addr, int val );
int GetSR(int n);
void GetBat( int bat, int inst, int *batHi, int *batLo );
Modified: branches/powerpc/reactos/boot/freeldr/freeldr/mm/mm.c
URL:
http://svn.reactos.org/svn/reactos/branches/powerpc/reactos/boot/freeldr/fr…
==============================================================================
--- branches/powerpc/reactos/boot/freeldr/freeldr/mm/mm.c (original)
+++ branches/powerpc/reactos/boot/freeldr/freeldr/mm/mm.c Thu Apr 19 09:36:21 2007
@@ -95,7 +95,7 @@
ULONG ptr;
printf("Allocating %d bytes directly ...\n", MemorySize);
ptr = ofw_claim(0,MemorySize,MM_PAGE_SIZE);
- MemPointer = (PVOID)(REV(ptr));
+ MemPointer = (PVOID)(ptr);
#endif
if( !MemPointer )
{