From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Jp6H0-00017e-Gn for qemu-devel@nongnu.org; Thu, 24 Apr 2008 14:34:22 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Jp6Gz-000176-1k for qemu-devel@nongnu.org; Thu, 24 Apr 2008 14:34:22 -0400 Received: from [199.232.76.173] (port=41887 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jp6Gy-000170-SH for qemu-devel@nongnu.org; Thu, 24 Apr 2008 14:34:20 -0400 Received: from savannah.gnu.org ([199.232.41.3] helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Jp6Gy-0002Ip-Mt for qemu-devel@nongnu.org; Thu, 24 Apr 2008 14:34:20 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Jp6Gx-0006A1-9q for qemu-devel@nongnu.org; Thu, 24 Apr 2008 18:34:19 +0000 Received: from pbrook by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Jp6Gx-00069x-0g for qemu-devel@nongnu.org; Thu, 24 Apr 2008 18:34:19 +0000 MIME-Version: 1.0 Errors-To: pbrook Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Paul Brook Message-Id: Date: Thu, 24 Apr 2008 18:34:19 +0000 Subject: [Qemu-devel] [4247] Stellaris boards really aren't that big! 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 Revision: 4247 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4247 Author: pbrook Date: 2008-04-24 18:34:18 +0000 (Thu, 24 Apr 2008) Log Message: ----------- Stellaris boards really aren't that big! Modified Paths: -------------- trunk/hw/stellaris.c Modified: trunk/hw/stellaris.c =================================================================== --- trunk/hw/stellaris.c 2008-04-24 17:59:27 UTC (rev 4246) +++ trunk/hw/stellaris.c 2008-04-24 18:34:18 UTC (rev 4247) @@ -1189,12 +1189,12 @@ "lm3s811evb", "Stellaris LM3S811EVB", lm3s811evb_init, - (64 * 1024 * 1024 + 8 * 1024 * 1024) | RAMSIZE_FIXED, + (64 * 1024 + 8 * 1024) | RAMSIZE_FIXED, }; QEMUMachine lm3s6965evb_machine = { "lm3s6965evb", "Stellaris LM3S6965EVB", lm3s6965evb_init, - (256 * 1024 * 1024 + 64 * 1024 * 1024) | RAMSIZE_FIXED, + (256 * 1024 + 64 * 1024) | RAMSIZE_FIXED, };