Revision: 755
http://cadcdev.svn.sourceforge.net/cadcdev/?rev=755&view=rev
Author: ljsebald
Date: 2012-04-09 01:05:26 +0000 (Mon, 09 Apr 2012)
Log Message:
-----------
Fix pvrmap example.
Modified Paths:
--------------
kos/examples/dreamcast/basic/mmu/pvrmap/pvrmap.c
Modified: kos/examples/dreamcast/basic/mmu/pvrmap/pvrmap.c
===================================================================
--- kos/examples/dreamcast/basic/mmu/pvrmap/pvrmap.c 2012-03-01 02:44:03 UTC (rev 754)
+++ kos/examples/dreamcast/basic/mmu/pvrmap/pvrmap.c 2012-04-09 01:05:26 UTC (rev 755)
@@ -28,7 +28,7 @@
/* Map the PVR video memory to 0 */
mmu_page_map(cxt, 0, 0x05000000 >> PAGESIZE_BITS, (8*1024*1024) >> PAGESIZE_BITS,
- MMU_ALL_RDWR, MMU_NO_CACHE, MMU_NOT_SHARED, MMU_DIRTY);
+ MMU_ALL_RDWR, MMU_NO_CACHE, 0, 1);
/* Draw a nice pattern to the NULL space */
vr = NULL;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|