From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36952) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dNfEF-0008Gu-NN for qemu-devel@nongnu.org; Wed, 21 Jun 2017 08:59:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dNfEF-000052-5T for qemu-devel@nongnu.org; Wed, 21 Jun 2017 08:59:27 -0400 Received: from mail-lf0-x243.google.com ([2a00:1450:4010:c07::243]:33329) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dNfEE-0008W6-Uw for qemu-devel@nongnu.org; Wed, 21 Jun 2017 08:59:27 -0400 Received: by mail-lf0-x243.google.com with SMTP id u62so20948022lfg.0 for ; Wed, 21 Jun 2017 05:59:26 -0700 (PDT) From: "Edgar E. Iglesias" Date: Wed, 21 Jun 2017 14:59:15 +0200 Message-Id: <1498049955-28646-8-git-send-email-edgar.iglesias@gmail.com> In-Reply-To: <1498049955-28646-1-git-send-email-edgar.iglesias@gmail.com> References: <1498049955-28646-1-git-send-email-edgar.iglesias@gmail.com> Subject: [Qemu-devel] [PATCH v2 7/7] target-microblaze: Add CPU version 10.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: rth@twiddle.net, alistai@xilinx.com, sai.pavan.boddu@xilinx.com, edgar.iglesias@xilinx.com From: "Edgar E. Iglesias" Add CPU version 10.0. Reviewed-by: Richard Henderson Signed-off-by: Edgar E. Iglesias --- target/microblaze/cpu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target/microblaze/cpu.c b/target/microblaze/cpu.c index 6e27c3c..f85ff01 100644 --- a/target/microblaze/cpu.c +++ b/target/microblaze/cpu.c @@ -67,6 +67,7 @@ static const struct { {"9.4", 0x21}, {"9.5", 0x22}, {"9.6", 0x23}, + {"10.0", 0x24}, {NULL, 0}, }; -- 2.7.4