Move mcrr and mrrc up the list so they match ahead of ldc/ldc2

This commit is contained in:
skrll 2015-12-14 15:29:45 +00:00
parent b802f479cb
commit b6c41919a3

View File

@ -1,4 +1,4 @@
/* $NetBSD: disassem.c,v 1.33 2015/05/02 16:18:49 skrll Exp $ */
/* $NetBSD: disassem.c,v 1.34 2015/12/14 15:29:45 skrll Exp $ */
/*
* Copyright (c) 1996 Mark Brinicombe.
@ -49,7 +49,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: disassem.c,v 1.33 2015/05/02 16:18:49 skrll Exp $");
__KERNEL_RCSID(0, "$NetBSD: disassem.c,v 1.34 2015/12/14 15:29:45 skrll Exp $");
#include <sys/systm.h>
@ -151,10 +151,10 @@ static const struct arm32_insn arm32_i[] = {
{ 0xfe000000, 0xfa000000, "blx", "t" }, /* Before b and bl */
{ 0xfe100090, 0xfc000000, "stc2", "L#v" },
{ 0x0e100090, 0x0c000000, "stc", "L#v" },
{ 0xfe100090, 0xfc100000, "ldc2", "L#v" },
{ 0x0e100090, 0x0c100000, "ldc", "L#v" },
{ 0x0ff00000, 0x0c400000, "mcrr", "#&" },
{ 0x0ff00000, 0x0c500000, "mrrc", "#&" },
{ 0xfe100090, 0xfc100000, "ldc2", "L#v" },
{ 0x0e100090, 0x0c100000, "ldc", "L#v" },
{ 0xff000010, 0xfe000000, "cdp2", "#y" },
{ 0x0f000010, 0x0e000000, "cdp", "#y" },
{ 0xff100010, 0xfe000010, "mcr2", "#z" },