From 42d4bff6fbbf74e2c27c6c7ff5ee1d1113f67128 Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 7 Sep 1992 14:13:11 +0000 Subject: [PATCH] Fixed ARPL instruction --- mach/i386/as/mach4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach/i386/as/mach4.c b/mach/i386/as/mach4.c index 8703e66d..c225b8ea 100644 --- a/mach/i386/as/mach4.c +++ b/mach/i386/as/mach4.c @@ -89,7 +89,7 @@ oper : NOOP_1 { emit1($1); ea_2($2<<3);} | LEAOP2 R32 ',' mem { emit1(0xF); emit1($1); ea_2($2<<3);} - | ARPLOP mem ',' R32 + | ARPLOP ea_2 ',' R32 { emit1($1); ea_2($4<<3);} | LSHFT ea_1 ',' R32 ',' ea_2 { extshft($1, $4);}