From 3d90e41a7f473595c54fd660726c9717fcd1b45c Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 13 Aug 1987 10:18:25 +0000 Subject: [PATCH] fixed a fix, which did not fix a bug after all --- mach/m68020/as/mach4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mach/m68020/as/mach4.c b/mach/m68020/as/mach4.c index 1563f9fb4..e6fbdde65 100644 --- a/mach/m68020/as/mach4.c +++ b/mach/m68020/as/mach4.c @@ -67,14 +67,14 @@ instruction { /* 64 bit dividend or product */ checksize($2, 4); T_EMIT2((046000 | ($1 & ~1)) | mrg_2, 0, 0, 0); - T_EMIT2(($1&1)<<11 | $7<<12 | $5 ,0,0,0); + T_EMIT2(($1&1)<<11 | $7<<12 | $5 | 02000 ,0,0,0); ea_2(SIZE_L, DTA); } | DIVL sizedef ea ',' DREG ':' DREG { /* 32 bit long division with remainder */ checksize($2, 4); T_EMIT2(($1 & ~1) | mrg_2, 0, 0, 0); - T_EMIT2(($1 & 1)<<11 | $7<<12 | $5 | 02000, 0, 0, 0); + T_EMIT2(($1 & 1)<<11 | $7<<12 | $5 , 0, 0, 0); ea_2(SIZE_L, DTA); } | LEA ea ',' AREG -- 2.34.1