Commit 4248980f authored by Ben Avison's avatar Ben Avison
Browse files

Fixed bug in KeyV handling: if it was called before the keyboard handler was...

Fixed bug in KeyV handling: if it was called before the keyboard handler was installed, it would abort reading from an address that used to be in the logical copy of physical space on an IOMD machine. This manifested itself during software-initiated resets as an abort during ROM init, leaving you with an apparently dead machine.

Version 5.35, 4.79.2.61. Tagged as 'Kernel-5_35-4_79_2_61'
parent e187fb9f
;
; This file is automatically maintained by srccommit, do not edit manually.
; Last processed by srccommit version: 1.68.
; Last processed by srccommit version: 1.2.
;
GBLS Module_MajorVersion
GBLA Module_Version
......@@ -13,11 +13,11 @@
GBLS Module_ComponentPath
Module_MajorVersion SETS "5.35"
Module_Version SETA 535
Module_MinorVersion SETS "4.79.2.60"
Module_Date SETS "15 Apr 2003"
Module_ApplicationDate SETS "15-Apr-03"
Module_MinorVersion SETS "4.79.2.61"
Module_Date SETS "02 Dec 2003"
Module_ApplicationDate SETS "02-Dec-03"
Module_ComponentName SETS "Kernel"
Module_ComponentPath SETS "RiscOS/Sources/Kernel"
Module_FullVersion SETS "5.35 (4.79.2.60)"
Module_HelpVersion SETS "5.35 (15 Apr 2003) 4.79.2.60"
Module_FullVersion SETS "5.35 (4.79.2.61)"
Module_HelpVersion SETS "5.35 (02 Dec 2003) 4.79.2.61"
END
/* (5.35)
*
* This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.68.
* Last processed by srccommit version: 1.2.
*
*/
#define Module_MajorVersion_CMHG 5.35
#define Module_MinorVersion_CMHG 4.79.2.60
#define Module_Date_CMHG 15 Apr 2003
#define Module_MinorVersion_CMHG 4.79.2.61
#define Module_Date_CMHG 02 Dec 2003
#define Module_MajorVersion "5.35"
#define Module_Version 535
#define Module_MinorVersion "4.79.2.60"
#define Module_Date "15 Apr 2003"
#define Module_MinorVersion "4.79.2.61"
#define Module_Date "02 Dec 2003"
#define Module_ApplicationDate "15-Apr-03"
#define Module_ApplicationDate "02-Dec-03"
#define Module_ComponentName "Kernel"
#define Module_ComponentPath "RiscOS/Sources/Kernel"
#define Module_FullVersion "5.35 (4.79.2.60)"
#define Module_HelpVersion "5.35 (15 Apr 2003) 4.79.2.60"
#define Module_FullVersion "5.35 (4.79.2.61)"
#define Module_HelpVersion "5.35 (02 Dec 2003) 4.79.2.61"
#define Module_LibraryVersionInfo "5:35"
......@@ -785,6 +785,8 @@ GenerateChar ROUT
CallSpecialReturnNChars
Push R14
CMP R0, #-1
Pull PC,EQ
04
BL CallSpecialCode
......
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