diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2003-05-08 19:26:38 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2003-05-08 19:26:38 +0000 |
commit | e0774bda67cbcf837e51816a0eef28fd20eac75d (patch) | |
tree | eaef4492a5e7886ddc17029d126525b21b5db393 /sys/arch/powerpc/ddb | |
parent | 521b86b6833082e4a994370155446bab6eebf6f2 (diff) |
'branch absolute linking' instruction is 'bla', not 'bal'.
Diffstat (limited to 'sys/arch/powerpc/ddb')
-rw-r--r-- | sys/arch/powerpc/ddb/db_disasm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/powerpc/ddb/db_disasm.c b/sys/arch/powerpc/ddb/db_disasm.c index 7e500f02848..8d79f59928b 100644 --- a/sys/arch/powerpc/ddb/db_disasm.c +++ b/sys/arch/powerpc/ddb/db_disasm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_disasm.c,v 1.9 2003/05/08 16:25:25 drahn Exp $ */ +/* $OpenBSD: db_disasm.c,v 1.10 2003/05/08 19:26:37 drahn Exp $ */ /* * Copyright (c) 1996, 2001, 2003 Dale Rahn. All rights reserved. * @@ -181,8 +181,8 @@ const struct opcode opcodes[] = { { "addi", 0xfc000000, 0x38000000, " %{D},%{A0}%{SIMM}" }, { "addis", 0xfc000000, 0x3c000000, " %{D},%{A0}%{SIMM}" }, { "sc", 0xffffffff, 0x44000002, "" }, - { "b", 0xfc000000, 0x40000000, "%{BO}%{AA}%{LK} %{BI}%{BD}" }, - { "b", 0xfc000000, 0x48000000, "%{AA}%{LK} %{LI}" }, + { "b", 0xfc000000, 0x40000000, "%{BO}%{LK}%{AA} %{BI}%{BD}" }, + { "b", 0xfc000000, 0x48000000, "%{LK}%{AA} %{LI}" }, { "rlwimi", 0xfc000000, 0x50000000, "%{RC} %{A},%{S},%{SH},%{MB},%{ME}" }, { "rlwinm", 0xfc000000, 0x54000000, "%{RC} %{A},%{S},%{SH},%{MB},%{ME}" }, |