From 515d6ebc9aa93bd1919ee0804146e443d6353d9e Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Mon, 25 Jan 2010 16:25:20 +0000 Subject: [PATCH] correct opcode of FNSTSW (hopefully fixes minix under virtualpc) --- commands/i386/gas2ack/emit_ack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.44.0