From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AM1Hg-0001hG-Mg for qemu-devel@nongnu.org; Tue, 18 Nov 2003 03:32:28 -0500 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AM1Gw-0000kQ-H3 for qemu-devel@nongnu.org; Tue, 18 Nov 2003 03:32:13 -0500 Received: from [62.210.158.46] (helo=teheran.magic.fr) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AM1Gv-0000iz-Jq for qemu-devel@nongnu.org; Tue, 18 Nov 2003 03:31:41 -0500 Received: from 10.0.0.2 (ppp-181.net-555.magic.fr [62.210.255.181]) by teheran.magic.fr (8.11.6/8.11.2) with ESMTP id hAI7UCe26635 for ; Tue, 18 Nov 2003 08:30:12 +0100 (CET) Subject: Re: [Qemu-devel] [PATCH] Fixes for qemu From: "J. Mayer" In-Reply-To: <1069139728.14646.2148.camel@rapid> References: <20031117105133.7e856e56.Jens.Arm@gmx.de> <1069139728.14646.2148.camel@rapid> Content-Type: text/plain Message-Id: <1069140896.14646.2190.camel@rapid> Mime-Version: 1.0 Date: 18 Nov 2003 08:34:56 +0100 Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org translate.c.diff Added two fake instructions to make QNX CDROM start booting. Infortunately, it still doesn't boot completely. diff -urNbB -x CVS qemu-current/target-i386/translate.c qemu/target-i386/translate.c --- qemu-current/target-i386/translate.c Fri Nov 14 00:09:07 2003 +++ qemu/target-i386/translate.c Fri Nov 14 19:09:46 2003 @@ -4071,6 +4071,10 @@ gen_op_clts(); } break; + case 0x108: /* invd */ + case 0x109: /* wbinvd */ + /* Do nothing */ + break; default: goto illegal_op; }