From d7c4bb86bc3e9a717435ed37a994d0a45214ff08 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 9 Apr 2018 00:04:28 +0100 Subject: [PATCH] 65c816: align with platform_ change for monitor call --- Kernel/lib/65c816.s | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Kernel/lib/65c816.s b/Kernel/lib/65c816.s index 1c3b7ff1..0500350e 100644 --- a/Kernel/lib/65c816.s +++ b/Kernel/lib/65c816.s @@ -11,7 +11,7 @@ .export _dofork .importzp ptr1 - .import _trap_monitor + .import _platform_monitor .import _chksigs .import _platform_idle .import _newproc @@ -79,7 +79,7 @@ switch_patch_2: stz _inint jsr _getproc ; x,a holds process jsr _switchin ; switch to process - jsr _trap_monitor ; bug out if it fails + jsr _platform_monitor ; bug out if it fails ; ; FIXME: add swap support @@ -177,7 +177,7 @@ switchinfail: ldx #>badswitchmsg jsr outstring ; something went wrong and we didn't switch in what we asked for - jmp _trap_monitor + jmp _platform_monitor badswitchmsg: .byte "_switchin: FAIL" .byte 13, 10, 0 -- 2.34.1