From a45f1cdd3333afb7f97238e56e550a3f1100004c Mon Sep 17 00:00:00 2001 From: David Given Date: Wed, 3 Aug 2022 20:32:58 +0200 Subject: [PATCH] Allow stosw, lodsw, scasw. --- mach/i386/as/mach3.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mach/i386/as/mach3.c b/mach/i386/as/mach3.c index 37f03566b..d5156ae0c 100644 --- a/mach/i386/as/mach3.c +++ b/mach/i386/as/mach3.c @@ -184,10 +184,13 @@ {0, NOOP_1, 0155, "ins"}, {0, NOOP_1, 0252, "stosb"}, {0, NOOP_1, 0253, "stos"}, +{0, NOOP_1, 0253, "stosw"}, {0, NOOP_1, 0254, "lodsb"}, {0, NOOP_1, 0255, "lods"}, +{0, NOOP_1, 0255, "lodsw"}, {0, NOOP_1, 0256, "scasb"}, {0, NOOP_1, 0257, "scas"}, +{0, NOOP_1, 0257, "scasw"}, {0, NOOP_1, 0311, "leave"}, {0, NOOP_1, 0316, "into"}, {0, NOOP_1, 0317, "iret"},