From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GXFSC-0007pL-HL for qemu-devel@nongnu.org; Tue, 10 Oct 2006 07:07:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GXFSB-0007oV-0W for qemu-devel@nongnu.org; Tue, 10 Oct 2006 07:07:20 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GXFSA-0007oP-RB for qemu-devel@nongnu.org; Tue, 10 Oct 2006 07:07:18 -0400 Received: from [64.233.166.183] (helo=py-out-1112.google.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GXFZv-0002Xu-ME for qemu-devel@nongnu.org; Tue, 10 Oct 2006 07:15:20 -0400 Received: by py-out-1112.google.com with SMTP id x31so2580528pye for ; Tue, 10 Oct 2006 04:07:17 -0700 (PDT) Message-ID: <56d259a00610100407p2529dbasd5ae43ade7901c66@mail.gmail.com> Date: Tue, 10 Oct 2006 12:07:16 +0100 From: "Martin Guy" Subject: Re: [Qemu-devel] Question about target port In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: 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 > How can I change target CPU to Atmel's AVR and don't care about host. > i.e:host CPU is X86(PC),target CPU is Atmel's AVR. Hi Atmel AVR is a different processor from the ones that QEMU emulates. You would need to implement an entire new emulation inside QEMU; that is a LOT of work in C programming. It is also an 8-bit processor, while all the ones that qemu currently emulates are 32-bit, so you may need to restructure the code as well to support 8-bit. M