From: Ben Gras Date: Mon, 25 Jan 2010 16:25:20 +0000 (+0000) Subject: correct opcode of FNSTSW (hopefully fixes minix under virtualpc) X-Git-Tag: v3.1.6~42 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=515d6ebc9aa93bd1919ee0804146e443d6353d9e;p=minix.git correct opcode of FNSTSW (hopefully fixes minix under virtualpc) --- diff --git a/commands/i386/gas2ack/emit_ack.c b/commands/i386/gas2ack/emit_ack.c index 585ad67e6..0dd878904 100644 --- a/commands/i386/gas2ack/emit_ack.c +++ b/commands/i386/gas2ack/emit_ack.c @@ -642,7 +642,7 @@ void ack_emit_instruction(asm86_t *a) } /* unsupported fnstsw */ if (a->opcode == FNSTSW) { - ack_printf(".data1 0xDF, 0xD0\n"); /* FNSTSW [eax] */ + ack_printf(".data1 0xDF, 0xE0\n"); /* FNSTSW [eax] */ return; } /* unsupported frstor */