From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KlSbB-0005SC-Gu for qemu-devel@nongnu.org; Thu, 02 Oct 2008 14:08:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KlSbA-0005Ra-8q for qemu-devel@nongnu.org; Thu, 02 Oct 2008 14:08:25 -0400 Received: from [199.232.76.173] (port=54631 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KlSb9-0005RL-Ro for qemu-devel@nongnu.org; Thu, 02 Oct 2008 14:08:23 -0400 Received: from mail-gx0-f19.google.com ([209.85.217.19]:41048) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KlSb9-0008Vi-DJ for qemu-devel@nongnu.org; Thu, 02 Oct 2008 14:08:23 -0400 Received: by gxk12 with SMTP id 12so1868461gxk.10 for ; Thu, 02 Oct 2008 11:08:23 -0700 (PDT) Message-ID: Date: Thu, 2 Oct 2008 21:08:22 +0300 From: "Blue Swirl" Subject: Re: [Qemu-devel] [PATCH] sparc: sun ss20 OBP does 32bit register access to esp In-Reply-To: <48E4304E.4010402@earthlink.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <48E4304E.4010402@earthlink.net> 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 On 10/2/08, Robert Reif wrote: > Unassigned mem write access to 0000000ef0800020 from 00026458 > Unassigned mem write access to 0000000ef0800028 from 00026464 > Unassigned mem write access to 0000000ef0800000 from 00026470 > Unassigned mem write access to 0000000ef0800000 from 0002647c > Unassigned mem write access to 0000000ef080000c from 000264a0 > > Index: hw/esp.c > =================================================================== > --- hw/esp.c (revision 5391) > +++ hw/esp.c (working copy) > @@ -569,7 +569,7 @@ > static CPUWriteMemoryFunc *esp_mem_write[3] = { > esp_mem_writeb, > NULL, > - NULL, > + esp_mem_writeb, /* sun OBP does 32bit writes to some of these > registers */ > }; > > static void esp_save(QEMUFile *f, void *opaque) > > > Thanks, applied.