From a6af25c7c250af28a6ee7ecb27c6f2dacf243233 Mon Sep 17 00:00:00 2001 From: Rutger van Bergen Date: Sun, 2 Jan 2022 09:58:55 +0100 Subject: [PATCH] Correct jmp instruction saved on jsr --- minsk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minsk.c b/minsk.c index 419ce0d..352af1f 100644 --- a/minsk.c +++ b/minsk.c @@ -683,7 +683,7 @@ static void run(void) ip = x; break; case 0131: // Jump to subroutine - wr(y, acc = ((030ULL << 30) | ((ip & 07777ULL) << 12))); + wr(y, acc = ((0130ULL << 30) | ((ip & 07777ULL) << 12))); ip = x; break; case 0132: // Jump if positive -- 2.39.2