From: Tony v. d. H. <to...@us...> - 2006-08-01 10:48:46
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16515/!OsLib/Source/Core/oslib Modified Files: OS.swi Log Message: OS_PlatformFeatures fixed in accordance with Iyonix Spec. (20060801-1, Phil Ludlam) Index: OS.swi =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib/OS.swi,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** OS.swi 2 Jan 2004 13:30:30 -0000 1.16 --- OS.swi 1 Aug 2006 10:48:32 -0000 1.17 *************** *** 2410,2421 **** TYPE OS_PlatformFeatureFlags = .Bits; ! CONST OS_PlatformCodeNeedsSynchronisation = OS_PlatformFeatureFlags: %1, ! OS_PlatformNeedsPredisableFunction = OS_PlatformFeatureFlags: %10, ! OS_PlatformExceptionVectorModifyNeeds32bit = ! OS_PlatformFeatureFlags: %100, ! OS_PlatformPipelineLength2 = OS_PlatformFeatureFlags: %1000, ! OS_PlatformFullEarlyDataAborts = OS_PlatformFeatureFlags: %10000, ! OS_Platform32BitOS = OS_PlatformFeatureFlags: %100000 "RISC O S 5+", ! OS_Platform26BitModeNotAvailable = OS_PlatformFeatureFlags: %1000000 "RISC O S 5+"; SWI OS_PlatformFeatures = //RO3.7+ --- 2410,2421 ---- TYPE OS_PlatformFeatureFlags = .Bits; ! CONST OS_PlatformCodeNeedsSynchronisation = OS_PlatformFeatureFlags: %1, ! OS_PlatformNeedsPredisableFunction = OS_PlatformFeatureFlags: %10, ! OS_PlatformExceptionVectorModifyNeeds32bit = OS_PlatformFeatureFlags: %100, ! OS_PlatformPipelineLength2 = OS_PlatformFeatureFlags: %1000, ! OS_PlatformFullEarlyDataAborts = OS_PlatformFeatureFlags: %10000, ! // 20060801 TV fixed in accordance with http://www.iyonix.com/32bit/32bit.shtml ! OS_Platform32BitOS = OS_PlatformFeatureFlags: %1000000 "RISC O S 5+", ! OS_Platform26BitModeNotAvailable = OS_PlatformFeatureFlags: %10000000 "RISC O S 5+"; SWI OS_PlatformFeatures = //RO3.7+ |