Source
...
Target
Commits (1)
...@@ -11,13 +11,13 @@ ...@@ -11,13 +11,13 @@
GBLS Module_HelpVersion GBLS Module_HelpVersion
GBLS Module_ComponentName GBLS Module_ComponentName
GBLS Module_ComponentPath GBLS Module_ComponentPath
Module_MajorVersion SETS "1.18" Module_MajorVersion SETS "1.19"
Module_Version SETA 118 Module_Version SETA 119
Module_MinorVersion SETS "" Module_MinorVersion SETS ""
Module_Date SETS "19 Apr 2015" Module_Date SETS "08 May 2016"
Module_ApplicationDate SETS "19-Apr-15" Module_ApplicationDate SETS "08-May-16"
Module_ComponentName SETS "StringLib" Module_ComponentName SETS "StringLib"
Module_ComponentPath SETS "castle/RiscOS/Sources/HWSupport/Sound/Voices/StringLib" Module_ComponentPath SETS "castle/RiscOS/Sources/HWSupport/Sound/Voices/StringLib"
Module_FullVersion SETS "1.18" Module_FullVersion SETS "1.19"
Module_HelpVersion SETS "1.18 (19 Apr 2015)" Module_HelpVersion SETS "1.19 (08 May 2016)"
END END
/* (1.18) /* (1.19)
* *
* This file is automatically maintained by srccommit, do not edit manually. * This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.1. * Last processed by srccommit version: 1.1.
* *
*/ */
#define Module_MajorVersion_CMHG 1.18 #define Module_MajorVersion_CMHG 1.19
#define Module_MinorVersion_CMHG #define Module_MinorVersion_CMHG
#define Module_Date_CMHG 19 Apr 2015 #define Module_Date_CMHG 08 May 2016
#define Module_MajorVersion "1.18" #define Module_MajorVersion "1.19"
#define Module_Version 118 #define Module_Version 119
#define Module_MinorVersion "" #define Module_MinorVersion ""
#define Module_Date "19 Apr 2015" #define Module_Date "08 May 2016"
#define Module_ApplicationDate "19-Apr-15" #define Module_ApplicationDate "08-May-16"
#define Module_ComponentName "StringLib" #define Module_ComponentName "StringLib"
#define Module_ComponentPath "castle/RiscOS/Sources/HWSupport/Sound/Voices/StringLib" #define Module_ComponentPath "castle/RiscOS/Sources/HWSupport/Sound/Voices/StringLib"
#define Module_FullVersion "1.18" #define Module_FullVersion "1.19"
#define Module_HelpVersion "1.18 (19 Apr 2015)" #define Module_HelpVersion "1.19 (08 May 2016)"
#define Module_LibraryVersionInfo "1:18" #define Module_LibraryVersionInfo "1:19"
...@@ -577,7 +577,7 @@ GateOn ROUT ...@@ -577,7 +577,7 @@ GateOn ROUT
; 65536*102400*4 is too large for a 32 bit int, divide everything by 8 ; 65536*102400*4 is too large for a 32 bit int, divide everything by 8
MOV R2,R2,LSR #3 ; /8 MOV R2,R2,LSR #3 ; /8
MOV R0,#&C8000000 ; 65536*102400*4/8 MOV R0,#&C8000000 ; 65536*102400*4/8
DivRem R4,R0,R2,R1 DivRem R4,R0,R2,R1,norem
02 02
Pull "R14" Pull "R14"
MSR CPSR_c,#IRQ32_mode MSR CPSR_c,#IRQ32_mode
...@@ -1085,7 +1085,7 @@ UpdateFill ROUT ...@@ -1085,7 +1085,7 @@ UpdateFill ROUT
; 65536*102400*4 is too large for a 32 bit int, divide everything by 8 ; 65536*102400*4 is too large for a 32 bit int, divide everything by 8
MOV R2,R2,LSR #3 ; /8 MOV R2,R2,LSR #3 ; /8
MOV R0,#&C8000000 ; 65536*102400*4/8 MOV R0,#&C8000000 ; 65536*102400*4/8
DivRem R4,R0,R2,R1 DivRem R4,R0,R2,R1,norem
02 02
Pull "R14" Pull "R14"
MSR CPSR_c,#IRQ32_mode MSR CPSR_c,#IRQ32_mode
......