From 2c746cbf937b9d309dd048d042269df0fe237539 Mon Sep 17 00:00:00 2001 From: Rutger van Bergen Date: Fri, 4 Mar 2022 10:59:49 +0100 Subject: [PATCH] Make x.block isolation consistent --- minsk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minsk.c b/minsk.c index 9fd3fa4..6091229 100644 --- a/minsk.c +++ b/minsk.c @@ -472,7 +472,7 @@ static void run(void) int op = (w >> 30) & 0177; // Operation code int ax = (w >> 28) & 3; // Address extensions supported in Minsk-22 mode int ix = (w >> 24) & 15; // Indexing - loc x = { (ax & 2) >> 1, (w >> 12) & 07777 }; // Operands (original form) + loc x = { ax >> 1, (w >> 12) & 07777 }; // Operands (original form) loc y = { ax & 1, w & 07777 }; loc xi=x, yi=y; // (indexed form) if (trace) -- 2.39.2