Commit 493cf925 authored by Martin Avison's avatar Martin Avison Committed by ROOL
Browse files

Fix softload on Iyonix

Detail:
  OS_ReadSysInfo,9,7 returns Tungsten not Iyonix on that machine, so softload
  fails to match. Now detected and changed to Iyonix.
Admin:
  Tested on Iyonix.
  Ref: https://www.riscosopen.org/forum/forums/4/topics/19290

Version 1.13. Tagged as 'ABRelease-1_13'
parent 9f724443
......@@ -195,6 +195,7 @@ DEF PROCcheckPlatform(sl$) :REM try to check platform suitable for Softloa
SYS "XOS_ReadSysInfo",9,7 TO r0%; rc% :REM only works in RO5.24+
IF (rc% AND 1)=0 AND r0%<>0 THEN
type$ = FNz(r0%)
IF type$ = "Tungsten" THEN type$ = "Iyonix" :REM Change platform name -> user name
ELSE :REM Before RO5.24, so need to check video
SYS "OS_Memory",9,3<<8 TO,r1% :REM is there a VIDC20?
IF r1% THEN
......
/* (1.12)
/* (1.13)
*
* This file is automatically maintained by srccommit, do not edit manually.
*
*/
#define Module_MajorVersion_CMHG 1.12
#define Module_MajorVersion_CMHG 1.13
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 17 Apr 2024
#define Module_Date_CMHG 08 May 2024
#define Module_MajorVersion "1.12"
#define Module_Version 112
#define Module_MajorVersion "1.13"
#define Module_Version 113
#define Module_MinorVersion ""
#define Module_Date "17 Apr 2024"
#define Module_Date "08 May 2024"
#define Module_ApplicationDate "17-Apr-24"
#define Module_ApplicationDate "08-May-24"
#define Module_ComponentName "ABRelease"
#define Module_FullVersion "1.12"
#define Module_HelpVersion "1.12 (17 Apr 2024)"
#define Module_LibraryVersionInfo "1:12"
#define Module_FullVersion "1.13"
#define Module_HelpVersion "1.13 (08 May 2024)"
#define Module_LibraryVersionInfo "1:13"
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment