Commit a64fa3d3 authored by Jeffrey Lee's avatar Jeffrey Lee
Browse files

Fix callback and breakpoint environment handlers to work with zero page relocation

Detail:
  s/Middle - Callback and breakpoint environment handler workspace is now specified as being ZeroPage relative
Admin:
  Untested, but same fix as on RPi branch


Version 5.35, 4.79.2.155. Tagged as 'Kernel-5_35-4_79_2_155'
parent a790a6c2
......@@ -13,11 +13,11 @@
GBLS Module_ComponentPath
Module_MajorVersion SETS "5.35"
Module_Version SETA 535
Module_MinorVersion SETS "4.79.2.154"
Module_Date SETS "21 Jun 2012"
Module_ApplicationDate SETS "21-Jun-12"
Module_MinorVersion SETS "4.79.2.155"
Module_Date SETS "26 Jun 2012"
Module_ApplicationDate SETS "26-Jun-12"
Module_ComponentName SETS "Kernel"
Module_ComponentPath SETS "castle/RiscOS/Sources/Kernel"
Module_FullVersion SETS "5.35 (4.79.2.154)"
Module_HelpVersion SETS "5.35 (21 Jun 2012) 4.79.2.154"
Module_FullVersion SETS "5.35 (4.79.2.155)"
Module_HelpVersion SETS "5.35 (26 Jun 2012) 4.79.2.155"
END
......@@ -5,19 +5,19 @@
*
*/
#define Module_MajorVersion_CMHG 5.35
#define Module_MinorVersion_CMHG 4.79.2.154
#define Module_Date_CMHG 21 Jun 2012
#define Module_MinorVersion_CMHG 4.79.2.155
#define Module_Date_CMHG 26 Jun 2012
#define Module_MajorVersion "5.35"
#define Module_Version 535
#define Module_MinorVersion "4.79.2.154"
#define Module_Date "21 Jun 2012"
#define Module_MinorVersion "4.79.2.155"
#define Module_Date "26 Jun 2012"
#define Module_ApplicationDate "21-Jun-12"
#define Module_ApplicationDate "26-Jun-12"
#define Module_ComponentName "Kernel"
#define Module_ComponentPath "castle/RiscOS/Sources/Kernel"
#define Module_FullVersion "5.35 (4.79.2.154)"
#define Module_HelpVersion "5.35 (21 Jun 2012) 4.79.2.154"
#define Module_FullVersion "5.35 (4.79.2.155)"
#define Module_HelpVersion "5.35 (26 Jun 2012) 4.79.2.155"
#define Module_LibraryVersionInfo "5:35"
......@@ -435,7 +435,7 @@ DEFHN2 MOV R12, R14
MOV R2, #0
ADR R3, EVENTH
SWI XOS_Control
LDR R0, =DUMPER
LDR R0, =ZeroPage+DUMPER
ADR R1, NOCALL
SWI XOS_CallBack
ADRL R0, CLIEXIT
......@@ -446,7 +446,7 @@ DEFHN2 MOV R12, R14
ADRL R6, ABORTD
ADRL R7, ADDREX
SWI XOS_SetEnv
LDR R0, =DUMPER
LDR R0, =ZeroPage+DUMPER
ADR R1, DEFBRK
SWI XOS_BreakCtrl
ADRL R0, NoHighSWIHandler
......@@ -1260,11 +1260,11 @@ defhantab
& NOCALL ; CallBackHandler
& 0
& DUMPER
& ZeroPage+DUMPER
& DEFBRK ; BreakPointHandler
& 0
& DUMPER
& ZeroPage+DUMPER
& ESCAPH ; EscapeHandler
& 0
......
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