From d416427da02dcfeb5c80e254ff7d59ec32660fcc Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 9 Apr 2018 21:37:09 +0100 Subject: [PATCH] z180: fix rename of monitor entry --- Kernel/cpu-z180/z180.s | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Kernel/cpu-z180/z180.s b/Kernel/cpu-z180/z180.s index 1ef3971a..f47784e6 100644 --- a/Kernel/cpu-z180/z180.s +++ b/Kernel/cpu-z180/z180.s @@ -23,7 +23,7 @@ .globl _chksigs .globl _inint .globl _getproc - .globl _trap_monitor + .globl _platform_monitor .globl _switchin .globl _platform_switchout .globl _dofork @@ -695,7 +695,7 @@ _platform_switchout: call _switchin ; we should never get here - jp _trap_monitor + jp _platform_monitor badswitchmsg: .ascii "_switchin: FAIL" .db 13, 10, 0 @@ -766,7 +766,7 @@ switchinfail: call outhl ld hl, #badswitchmsg call outstring - jp _trap_monitor + jp _platform_monitor map_kernel: ; map the kernel into the low 60K, leaves common memory unchanged push af -- 2.34.1