From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1G2p5R-00065b-AI for qemu-devel@nongnu.org; Tue, 18 Jul 2006 08:54:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1G2p5P-00065O-N4 for qemu-devel@nongnu.org; Tue, 18 Jul 2006 08:54:04 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G2p5P-00065L-KE for qemu-devel@nongnu.org; Tue, 18 Jul 2006 08:54:03 -0400 Received: from [217.30.189.230] (helo=mail.nomovok.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1G2p8I-0004H0-P5 for qemu-devel@nongnu.org; Tue, 18 Jul 2006 08:57:02 -0400 Received: from [85.77.96.209] (GYZMMCMVIII.dsl.saunalahti.fi [85.77.96.209]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.nomovok.com (Postfix) with ESMTP id CBA79D94208 for ; Tue, 18 Jul 2006 15:53:55 +0300 (EEST) Message-ID: <44BCD9E8.6060108@nomovok.com> Date: Tue, 18 Jul 2006 15:54:00 +0300 From: Pablo Virolainen MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Small note about qemu/target-sh4/op.c Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hello, I just noticed that op_dec8_rN and op_dec8_rN might have a copy-paste error. I wonder if it should be like RCS file: /sources/qemu/qemu/target-sh4/op.c,v retrieving revision 1.3 diff -u -r1.3 op.c --- op.c 18 Jun 2006 19:12:54 -0000 1.3 +++ op.c 18 Jul 2006 12:22:23 -0000 @@ -737,7 +737,7 @@ void OPPROTO op_dec8_rN(void) { - env->gregs[PARAM1] -= 4; + env->gregs[PARAM1] -= 8; RETURN(); } @@ -761,7 +761,7 @@ void OPPROTO op_inc8_rN(void) { - env->gregs[PARAM1] += 4; + env->gregs[PARAM1] += 8; RETURN(); } Pablo Virolainen