Commit 2d62b657 authored by Stewart Brodie's avatar Stewart Brodie
Browse files

Fix to 32-bit flag - it was previously inverted.

  Modulewrapped modules will now have the correct 32-bitness flag.
Admin:
  Built.

Version 5.23. Tagged as 'RISC_OSLib-5_23'
parent c31e0d58
...@@ -11,14 +11,14 @@ ...@@ -11,14 +11,14 @@
GBLS Module_HelpVersion GBLS Module_HelpVersion
GBLS Module_ComponentName GBLS Module_ComponentName
GBLS Module_ComponentPath GBLS Module_ComponentPath
Module_MajorVersion SETS "5.22" Module_MajorVersion SETS "5.23"
Module_Version SETA 522 Module_Version SETA 523
Module_MinorVersion SETS "" Module_MinorVersion SETS ""
Module_Date SETS "20 Nov 2000" Module_Date SETS "21 Nov 2000"
Module_ApplicationDate2 SETS "20-Nov-00" Module_ApplicationDate2 SETS "21-Nov-00"
Module_ApplicationDate4 SETS "20-Nov-2000" Module_ApplicationDate4 SETS "21-Nov-2000"
Module_ComponentName SETS "RISC_OSLib" Module_ComponentName SETS "RISC_OSLib"
Module_ComponentPath SETS "RiscOS/Sources/Lib/RISC_OSLib" Module_ComponentPath SETS "RiscOS/Sources/Lib/RISC_OSLib"
Module_FullVersion SETS "5.22" Module_FullVersion SETS "5.23"
Module_HelpVersion SETS "5.22 (20 Nov 2000)" Module_HelpVersion SETS "5.23 (21 Nov 2000)"
END END
/* (5.22) /* (5.23)
* *
* This file is automatically maintained by srccommit, do not edit manually. * This file is automatically maintained by srccommit, do not edit manually.
* *
*/ */
#define Module_MajorVersion_CMHG 5.22 #define Module_MajorVersion_CMHG 5.23
#define Module_MinorVersion_CMHG #define Module_MinorVersion_CMHG
#define Module_Date_CMHG 20 Nov 2000 #define Module_Date_CMHG 21 Nov 2000
#define Module_MajorVersion "5.22" #define Module_MajorVersion "5.23"
#define Module_Version 522 #define Module_Version 523
#define Module_MinorVersion "" #define Module_MinorVersion ""
#define Module_Date "20 Nov 2000" #define Module_Date "21 Nov 2000"
#define Module_ApplicationDate2 "20-Nov-00" #define Module_ApplicationDate2 "21-Nov-00"
#define Module_ApplicationDate4 "20-Nov-2000" #define Module_ApplicationDate4 "21-Nov-2000"
#define Module_ComponentName "RISC_OSLib" #define Module_ComponentName "RISC_OSLib"
#define Module_ComponentPath "RiscOS/Sources/Lib/RISC_OSLib" #define Module_ComponentPath "RiscOS/Sources/Lib/RISC_OSLib"
#define Module_FullVersion "5.22" #define Module_FullVersion "5.23"
#define Module_HelpVersion "5.22 (20 Nov 2000)" #define Module_HelpVersion "5.23 (21 Nov 2000)"
...@@ -78,7 +78,7 @@ Code_HelpString ...@@ -78,7 +78,7 @@ Code_HelpString
ALIGN ALIGN
Code_ModuleFlags Code_ModuleFlags
[ {CONFIG}=32 [ {CONFIG}=26
DCD 0 DCD 0
| |
DCD ModuleFlag_32bit DCD ModuleFlag_32bit
......
...@@ -88,6 +88,9 @@ Module_BaseAddr ...@@ -88,6 +88,9 @@ Module_BaseAddr
| |
DCD 0 DCD 0
] ]
[ :LNOT: No32bitCode
DCD ModuleWrap_ModuleFlags - Module_BaseAddr
]
ModuleWrap_CommandTable ModuleWrap_CommandTable
[ :DEF:FilerAct [ :DEF:FilerAct
...@@ -153,6 +156,10 @@ ModuleWrap_TitleString DCB "!", ApplicationName, 0 ...@@ -153,6 +156,10 @@ ModuleWrap_TitleString DCB "!", ApplicationName, 0
ALIGN ALIGN
[ :LNOT: No32bitCode
ModuleWrap_ModuleFlags DCD ModuleFlag_32bit
]
space * 32 space * 32
strcpy_advance Entry "r1,r2" strcpy_advance Entry "r1,r2"
......
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