1*d2201f2fSdrahn /* Opcode table for PDP-11. 2*d2201f2fSdrahn Copyright 2001, 2002 Free Software Foundation, Inc. 3*d2201f2fSdrahn 4*d2201f2fSdrahn This file is free software; you can redistribute it and/or modify 5*d2201f2fSdrahn it under the terms of the GNU General Public License as published by 6*d2201f2fSdrahn the Free Software Foundation; either version 2 of the License, or 7*d2201f2fSdrahn (at your option) any later version. 8*d2201f2fSdrahn 9*d2201f2fSdrahn This program is distributed in the hope that it will be useful, 10*d2201f2fSdrahn but WITHOUT ANY WARRANTY; without even the implied warranty of 11*d2201f2fSdrahn MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12*d2201f2fSdrahn GNU General Public License for more details. 13*d2201f2fSdrahn 14*d2201f2fSdrahn You should have received a copy of the GNU General Public License 15*d2201f2fSdrahn along with this program; if not, write to the Free Software 16*d2201f2fSdrahn Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 17*d2201f2fSdrahn 18*d2201f2fSdrahn #include "opcode/pdp11.h" 19*d2201f2fSdrahn 20*d2201f2fSdrahn const struct pdp11_opcode pdp11_opcodes[] = 21*d2201f2fSdrahn { 22*d2201f2fSdrahn /* name, pattern, mask, opcode type, insn type, alias */ 23*d2201f2fSdrahn { "halt", 0x0000, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 24*d2201f2fSdrahn { "wait", 0x0001, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 25*d2201f2fSdrahn { "rti", 0x0002, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 26*d2201f2fSdrahn { "bpt", 0x0003, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 27*d2201f2fSdrahn { "iot", 0x0004, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 28*d2201f2fSdrahn { "reset", 0x0005, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 29*d2201f2fSdrahn { "rtt", 0x0006, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_LEIS }, 30*d2201f2fSdrahn { "mfpt", 0x0007, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_MFPT }, 31*d2201f2fSdrahn { "jmp", 0x0040, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 32*d2201f2fSdrahn { "rts", 0x0080, 0xfff8, PDP11_OPCODE_REG, PDP11_BASIC }, 33*d2201f2fSdrahn { "", 0x0088, 0xfff8, PDP11_OPCODE_ILLEGAL, PDP11_NONE }, 34*d2201f2fSdrahn { "", 0x0090, 0xfff8, PDP11_OPCODE_ILLEGAL, PDP11_NONE }, 35*d2201f2fSdrahn { "spl", 0x0098, 0xfff8, PDP11_OPCODE_IMM3, PDP11_SPL }, 36*d2201f2fSdrahn { "nop", 0x00a0, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 37*d2201f2fSdrahn { "clc", 0x00a1, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 38*d2201f2fSdrahn { "clv", 0x00a2, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 39*d2201f2fSdrahn { "cl_3", 0x00a3, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 40*d2201f2fSdrahn { "clz", 0x00a4, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 41*d2201f2fSdrahn { "cl_5", 0x00a5, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 42*d2201f2fSdrahn { "cl_6", 0x00a6, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 43*d2201f2fSdrahn { "cl_7", 0x00a7, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 44*d2201f2fSdrahn { "cln", 0x00a8, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 45*d2201f2fSdrahn { "cl_9", 0x00a9, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 46*d2201f2fSdrahn { "cl_a", 0x00aa, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 47*d2201f2fSdrahn { "cl_b", 0x00ab, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 48*d2201f2fSdrahn { "cl_c", 0x00ac, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 49*d2201f2fSdrahn { "cl_d", 0x00ad, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 50*d2201f2fSdrahn { "cl_e", 0x00ae, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 51*d2201f2fSdrahn { "ccc", 0x00af, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 52*d2201f2fSdrahn { "se_0", 0x00b0, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 53*d2201f2fSdrahn { "sec", 0x00a1, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 54*d2201f2fSdrahn { "sev", 0x00b2, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 55*d2201f2fSdrahn { "se_3", 0x00b3, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 56*d2201f2fSdrahn { "sez", 0x00b4, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 57*d2201f2fSdrahn { "se_5", 0x00b5, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 58*d2201f2fSdrahn { "se_6", 0x00b6, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 59*d2201f2fSdrahn { "se_7", 0x00b7, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 60*d2201f2fSdrahn { "sen", 0x00b8, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 61*d2201f2fSdrahn { "se_9", 0x00b9, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 62*d2201f2fSdrahn { "se_a", 0x00ba, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 63*d2201f2fSdrahn { "se_b", 0x00bb, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 64*d2201f2fSdrahn { "se_c", 0x00bc, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 65*d2201f2fSdrahn { "se_d", 0x00bd, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 66*d2201f2fSdrahn { "se_e", 0x00be, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 67*d2201f2fSdrahn { "scc", 0x00bf, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_BASIC }, 68*d2201f2fSdrahn { "swab", 0x00c0, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 69*d2201f2fSdrahn { "br", 0x0100, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 70*d2201f2fSdrahn { "bne", 0x0200, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 71*d2201f2fSdrahn { "beq", 0x0300, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 72*d2201f2fSdrahn { "bge", 0x0400, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 73*d2201f2fSdrahn { "blt", 0x0500, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 74*d2201f2fSdrahn { "bgt", 0x0600, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 75*d2201f2fSdrahn { "ble", 0x0700, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 76*d2201f2fSdrahn { "jsr", 0x0800, 0xfe00, PDP11_OPCODE_REG_OP, PDP11_BASIC }, 77*d2201f2fSdrahn { "clr", 0x0a00, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 78*d2201f2fSdrahn { "com", 0x0a40, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 79*d2201f2fSdrahn { "inc", 0x0a80, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 80*d2201f2fSdrahn { "dec", 0x0ac0, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 81*d2201f2fSdrahn { "neg", 0x0b00, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 82*d2201f2fSdrahn { "adc", 0x0b40, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 83*d2201f2fSdrahn { "sbc", 0x0b80, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 84*d2201f2fSdrahn { "tst", 0x0bc0, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 85*d2201f2fSdrahn { "ror", 0x0c00, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 86*d2201f2fSdrahn { "rol", 0x0c40, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 87*d2201f2fSdrahn { "asr", 0x0c80, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 88*d2201f2fSdrahn { "asl", 0x0cc0, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 89*d2201f2fSdrahn { "mark", 0x0d00, 0xffc0, PDP11_OPCODE_IMM6, PDP11_LEIS }, 90*d2201f2fSdrahn { "mfpi", 0x0d40, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 91*d2201f2fSdrahn { "mtpi", 0x0d80, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 92*d2201f2fSdrahn { "sxt", 0x0dc0, 0xffc0, PDP11_OPCODE_OP, PDP11_LEIS }, 93*d2201f2fSdrahn { "csm", 0x0e00, 0xffc0, PDP11_OPCODE_OP, PDP11_CSM }, 94*d2201f2fSdrahn { "tstset", 0x0e40, 0xffc0, PDP11_OPCODE_OP, PDP11_MPROC }, 95*d2201f2fSdrahn { "wrtlck", 0x0e80, 0xffc0, PDP11_OPCODE_OP, PDP11_MPROC }, 96*d2201f2fSdrahn /*{ "", 0x0ec0, 0xffe0, PDP11_OPCODE_ILLEGAL, PDP11_NONE },*/ 97*d2201f2fSdrahn { "mov", 0x1000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 98*d2201f2fSdrahn { "cmp", 0x2000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 99*d2201f2fSdrahn { "bit", 0x3000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 100*d2201f2fSdrahn { "bic", 0x4000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 101*d2201f2fSdrahn { "bis", 0x5000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 102*d2201f2fSdrahn { "add", 0x6000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 103*d2201f2fSdrahn { "mul", 0x7000, 0xfe00, PDP11_OPCODE_REG_OP_REV,PDP11_EIS }, 104*d2201f2fSdrahn { "div", 0x7200, 0xfe00, PDP11_OPCODE_REG_OP_REV,PDP11_EIS }, 105*d2201f2fSdrahn { "ash", 0x7400, 0xfe00, PDP11_OPCODE_REG_OP_REV,PDP11_EIS }, 106*d2201f2fSdrahn { "ashc", 0x7600, 0xfe00, PDP11_OPCODE_REG_OP_REV,PDP11_EIS }, 107*d2201f2fSdrahn { "xor", 0x7800, 0xfe00, PDP11_OPCODE_REG_OP, PDP11_LEIS }, 108*d2201f2fSdrahn { "fadd", 0x7a00, 0xfff8, PDP11_OPCODE_REG, PDP11_FIS }, 109*d2201f2fSdrahn { "fsub", 0x7a08, 0xfff8, PDP11_OPCODE_REG, PDP11_FIS }, 110*d2201f2fSdrahn { "fmul", 0x7a10, 0xfff8, PDP11_OPCODE_REG, PDP11_FIS }, 111*d2201f2fSdrahn { "fdiv", 0x7a18, 0xfff8, PDP11_OPCODE_REG, PDP11_FIS }, 112*d2201f2fSdrahn /*{ "", 0x7a20, 0xffe0, PDP11_OPCODE_ILLEGAL, PDP11_NONE },*/ 113*d2201f2fSdrahn /*{ "", 0x7a40, 0xffc0, PDP11_OPCODE_ILLEGAL, PDP11_NONE },*/ 114*d2201f2fSdrahn /*{ "", 0x7a80, 0xff80, PDP11_OPCODE_ILLEGAL, PDP11_NONE },*/ 115*d2201f2fSdrahn /*{ "", 0x7b00, 0xffe0, PDP11_OPCODE_ILLEGAL, PDP11_NONE },*/ 116*d2201f2fSdrahn { "l2dr", 0x7c10, 0xfff8, PDP11_OPCODE_REG, PDP11_CIS },/*l2d*/ 117*d2201f2fSdrahn { "movc", 0x7c18, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 118*d2201f2fSdrahn { "movrc", 0x7c19, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 119*d2201f2fSdrahn { "movtc", 0x7c1a, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 120*d2201f2fSdrahn { "locc", 0x7c20, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 121*d2201f2fSdrahn { "skpc", 0x7c21, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 122*d2201f2fSdrahn { "scanc", 0x7c22, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 123*d2201f2fSdrahn { "spanc", 0x7c23, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 124*d2201f2fSdrahn { "cmpc", 0x7c24, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 125*d2201f2fSdrahn { "matc", 0x7c25, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 126*d2201f2fSdrahn { "addn", 0x7c28, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 127*d2201f2fSdrahn { "subn", 0x7c29, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 128*d2201f2fSdrahn { "cmpn", 0x7c2a, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 129*d2201f2fSdrahn { "cvtnl", 0x7c2b, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 130*d2201f2fSdrahn { "cvtpn", 0x7c2c, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 131*d2201f2fSdrahn { "cvtnp", 0x7c2d, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 132*d2201f2fSdrahn { "ashn", 0x7c2e, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 133*d2201f2fSdrahn { "cvtln", 0x7c2f, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 134*d2201f2fSdrahn { "l3dr", 0x7c30, 0xfff8, PDP11_OPCODE_REG, PDP11_CIS },/*l3d*/ 135*d2201f2fSdrahn { "addp", 0x7c38, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 136*d2201f2fSdrahn { "subp", 0x7c39, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 137*d2201f2fSdrahn { "cmpp", 0x7c3a, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 138*d2201f2fSdrahn { "cvtpl", 0x7c3b, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 139*d2201f2fSdrahn { "mulp", 0x7c3c, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 140*d2201f2fSdrahn { "divp", 0x7c3d, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 141*d2201f2fSdrahn { "ashp", 0x7c3e, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 142*d2201f2fSdrahn { "cvtlp", 0x7c3f, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 143*d2201f2fSdrahn { "movci", 0x7c58, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 144*d2201f2fSdrahn { "movrci", 0x7c59, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 145*d2201f2fSdrahn { "movtci", 0x7c5a, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 146*d2201f2fSdrahn { "locci", 0x7c60, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 147*d2201f2fSdrahn { "skpci", 0x7c61, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 148*d2201f2fSdrahn { "scanci", 0x7c62, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 149*d2201f2fSdrahn { "spanci", 0x7c63, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 150*d2201f2fSdrahn { "cmpci", 0x7c64, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 151*d2201f2fSdrahn { "matci", 0x7c65, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 152*d2201f2fSdrahn { "addni", 0x7c68, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 153*d2201f2fSdrahn { "subni", 0x7c69, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 154*d2201f2fSdrahn { "cmpni", 0x7c6a, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 155*d2201f2fSdrahn { "cvtnli", 0x7c6b, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 156*d2201f2fSdrahn { "cvtpni", 0x7c6c, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 157*d2201f2fSdrahn { "cvtnpi", 0x7c6d, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 158*d2201f2fSdrahn { "ashni", 0x7c6e, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 159*d2201f2fSdrahn { "cvtlni", 0x7c6f, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 160*d2201f2fSdrahn { "addpi", 0x7c78, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 161*d2201f2fSdrahn { "subpi", 0x7c79, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 162*d2201f2fSdrahn { "cmppi", 0x7c7a, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 163*d2201f2fSdrahn { "cvtpli", 0x7c7b, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 164*d2201f2fSdrahn { "mulpi", 0x7c7c, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 165*d2201f2fSdrahn { "divpi", 0x7c7d, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 166*d2201f2fSdrahn { "ashpi", 0x7c7e, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 167*d2201f2fSdrahn { "cvtlpi", 0x7c7f, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_CIS }, 168*d2201f2fSdrahn { "med", 0x7d80, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_UCODE }, 169*d2201f2fSdrahn { "xfc", 0x7dc0, 0xffc0, PDP11_OPCODE_IMM6, PDP11_UCODE }, 170*d2201f2fSdrahn { "sob", 0x7e00, 0xfe00, PDP11_OPCODE_REG_DISPL, PDP11_LEIS }, 171*d2201f2fSdrahn { "bpl", 0x8000, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 172*d2201f2fSdrahn { "bmi", 0x8100, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 173*d2201f2fSdrahn { "bhi", 0x8200, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 174*d2201f2fSdrahn { "blos", 0x8300, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 175*d2201f2fSdrahn { "bvc", 0x8400, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 176*d2201f2fSdrahn { "bvs", 0x8500, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 177*d2201f2fSdrahn { "bcc", 0x8600, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC },/*bhis*/ 178*d2201f2fSdrahn { "bcs", 0x8700, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC },/*blo*/ 179*d2201f2fSdrahn { "emt", 0x8800, 0xff00, PDP11_OPCODE_IMM8, PDP11_BASIC }, 180*d2201f2fSdrahn { "sys", 0x8900, 0xff00, PDP11_OPCODE_IMM8, PDP11_BASIC },/*trap*/ 181*d2201f2fSdrahn { "clrb", 0x8a00, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 182*d2201f2fSdrahn { "comb", 0x8a40, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 183*d2201f2fSdrahn { "incb", 0x8a80, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 184*d2201f2fSdrahn { "decb", 0x8ac0, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 185*d2201f2fSdrahn { "negb", 0x8b00, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 186*d2201f2fSdrahn { "adcb", 0x8b40, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 187*d2201f2fSdrahn { "sbcb", 0x8b80, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 188*d2201f2fSdrahn { "tstb", 0x8bc0, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 189*d2201f2fSdrahn { "rorb", 0x8c00, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 190*d2201f2fSdrahn { "rolb", 0x8c40, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 191*d2201f2fSdrahn { "asrb", 0x8c80, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 192*d2201f2fSdrahn { "aslb", 0x8cc0, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 193*d2201f2fSdrahn { "mtps", 0x8d00, 0xffc0, PDP11_OPCODE_OP, PDP11_MXPS }, 194*d2201f2fSdrahn { "mfpd", 0x8d40, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 195*d2201f2fSdrahn { "mtpd", 0x8d80, 0xffc0, PDP11_OPCODE_OP, PDP11_BASIC }, 196*d2201f2fSdrahn { "mfps", 0x8dc0, 0xffc0, PDP11_OPCODE_OP, PDP11_MXPS }, 197*d2201f2fSdrahn { "movb", 0x9000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 198*d2201f2fSdrahn { "cmpb", 0xa000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 199*d2201f2fSdrahn { "bitb", 0xb000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 200*d2201f2fSdrahn { "bicb", 0xc000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 201*d2201f2fSdrahn { "bisb", 0xd000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 202*d2201f2fSdrahn { "sub", 0xe000, 0xf000, PDP11_OPCODE_OP_OP, PDP11_BASIC }, 203*d2201f2fSdrahn { "cfcc", 0xf000, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_FPP }, 204*d2201f2fSdrahn { "setf", 0xf001, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_FPP }, 205*d2201f2fSdrahn { "seti", 0xf002, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_FPP }, 206*d2201f2fSdrahn { "ldub", 0xf003, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_UCODE }, 207*d2201f2fSdrahn /* fpp trap 0xf004..0xf008 */ 208*d2201f2fSdrahn { "setd", 0xf009, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_FPP }, 209*d2201f2fSdrahn { "setl", 0xf00a, 0xffff, PDP11_OPCODE_NO_OPS, PDP11_FPP }, 210*d2201f2fSdrahn /* fpp trap 0xf00b..0xf03f */ 211*d2201f2fSdrahn { "ldfps", 0xf040, 0xffc0, PDP11_OPCODE_OP, PDP11_FPP }, 212*d2201f2fSdrahn { "stfps", 0xf080, 0xffc0, PDP11_OPCODE_OP, PDP11_FPP }, 213*d2201f2fSdrahn { "stst", 0xf0c0, 0xffc0, PDP11_OPCODE_OP, PDP11_FPP }, 214*d2201f2fSdrahn { "clrf", 0xf100, 0xffc0, PDP11_OPCODE_FOP, PDP11_FPP }, 215*d2201f2fSdrahn { "tstf", 0xf140, 0xffc0, PDP11_OPCODE_FOP, PDP11_FPP }, 216*d2201f2fSdrahn { "absf", 0xf180, 0xffc0, PDP11_OPCODE_FOP, PDP11_FPP }, 217*d2201f2fSdrahn { "negf", 0xf1c0, 0xffc0, PDP11_OPCODE_FOP, PDP11_FPP }, 218*d2201f2fSdrahn { "mulf", 0xf200, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 219*d2201f2fSdrahn { "modf", 0xf300, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 220*d2201f2fSdrahn { "addf", 0xf400, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 221*d2201f2fSdrahn { "ldf", 0xf500, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP },/*movif*/ 222*d2201f2fSdrahn { "subf", 0xf600, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 223*d2201f2fSdrahn { "cmpf", 0xf700, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 224*d2201f2fSdrahn { "stf", 0xf800, 0xff00, PDP11_OPCODE_AC_FOP, PDP11_FPP },/*movfi*/ 225*d2201f2fSdrahn { "divf", 0xf900, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 226*d2201f2fSdrahn { "stexp", 0xfa00, 0xff00, PDP11_OPCODE_AC_OP, PDP11_FPP }, 227*d2201f2fSdrahn { "stcfi", 0xfb00, 0xff00, PDP11_OPCODE_AC_OP, PDP11_FPP }, 228*d2201f2fSdrahn { "stcff", 0xfc00, 0xff00, PDP11_OPCODE_AC_FOP, PDP11_FPP },/* ? */ 229*d2201f2fSdrahn { "ldexp", 0xfd00, 0xff00, PDP11_OPCODE_OP_AC, PDP11_FPP }, 230*d2201f2fSdrahn { "ldcif", 0xfe00, 0xff00, PDP11_OPCODE_OP_AC, PDP11_FPP }, 231*d2201f2fSdrahn { "ldcff", 0xff00, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP },/* ? */ 232*d2201f2fSdrahn /* This entry MUST be last; it is a "catch-all" entry that will match when no 233*d2201f2fSdrahn * other opcode entry matches during disassembly. 234*d2201f2fSdrahn */ 235*d2201f2fSdrahn { "", 0x0000, 0x0000, PDP11_OPCODE_ILLEGAL, PDP11_NONE }, 236*d2201f2fSdrahn }; 237*d2201f2fSdrahn 238*d2201f2fSdrahn const struct pdp11_opcode pdp11_aliases[] = 239*d2201f2fSdrahn { 240*d2201f2fSdrahn /* name, pattern, mask, opcode type, insn type */ 241*d2201f2fSdrahn { "l2d", 0x7c10, 0xfff8, PDP11_OPCODE_REG, PDP11_CIS }, 242*d2201f2fSdrahn { "l3d", 0x7c30, 0xfff8, PDP11_OPCODE_REG, PDP11_CIS }, 243*d2201f2fSdrahn { "bhis", 0x8600, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 244*d2201f2fSdrahn { "blo", 0x8700, 0xff00, PDP11_OPCODE_DISPL, PDP11_BASIC }, 245*d2201f2fSdrahn { "trap", 0x8900, 0xff00, PDP11_OPCODE_IMM8, PDP11_BASIC }, 246*d2201f2fSdrahn /* fpp xxxd alternate names to xxxf opcodes */ 247*d2201f2fSdrahn { "clrd", 0xf100, 0xffc0, PDP11_OPCODE_FOP, PDP11_FPP }, 248*d2201f2fSdrahn { "tstd", 0xf140, 0xffc0, PDP11_OPCODE_FOP, PDP11_FPP }, 249*d2201f2fSdrahn { "absd", 0xf180, 0xffc0, PDP11_OPCODE_FOP, PDP11_FPP }, 250*d2201f2fSdrahn { "negd", 0xf1c0, 0xffc0, PDP11_OPCODE_FOP, PDP11_FPP }, 251*d2201f2fSdrahn { "muld", 0xf200, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 252*d2201f2fSdrahn { "modd", 0xf300, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 253*d2201f2fSdrahn { "addd", 0xf400, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 254*d2201f2fSdrahn { "ldd", 0xf500, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP },/*movif*/ 255*d2201f2fSdrahn { "subd", 0xf600, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 256*d2201f2fSdrahn { "cmpd", 0xf700, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 257*d2201f2fSdrahn { "std", 0xf800, 0xff00, PDP11_OPCODE_AC_FOP, PDP11_FPP },/*movfi*/ 258*d2201f2fSdrahn { "divd", 0xf900, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP }, 259*d2201f2fSdrahn { "stcfl", 0xfb00, 0xff00, PDP11_OPCODE_AC_OP, PDP11_FPP }, 260*d2201f2fSdrahn { "stcdi", 0xfb00, 0xff00, PDP11_OPCODE_AC_OP, PDP11_FPP }, 261*d2201f2fSdrahn { "stcdl", 0xfb00, 0xff00, PDP11_OPCODE_AC_OP, PDP11_FPP }, 262*d2201f2fSdrahn { "stcfd", 0xfc00, 0xff00, PDP11_OPCODE_AC_FOP, PDP11_FPP },/* ? */ 263*d2201f2fSdrahn { "stcdf", 0xfc00, 0xff00, PDP11_OPCODE_AC_FOP, PDP11_FPP },/* ? */ 264*d2201f2fSdrahn { "ldcid", 0xfe00, 0xff00, PDP11_OPCODE_OP_AC, PDP11_FPP }, 265*d2201f2fSdrahn { "ldclf", 0xfe00, 0xff00, PDP11_OPCODE_OP_AC, PDP11_FPP }, 266*d2201f2fSdrahn { "ldcld", 0xfe00, 0xff00, PDP11_OPCODE_OP_AC, PDP11_FPP }, 267*d2201f2fSdrahn { "ldcfd", 0xff00, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP },/* ? */ 268*d2201f2fSdrahn { "ldcdf", 0xff00, 0xff00, PDP11_OPCODE_FOP_AC, PDP11_FPP },/* ? */ 269*d2201f2fSdrahn }; 270*d2201f2fSdrahn 271*d2201f2fSdrahn const int pdp11_num_opcodes = sizeof pdp11_opcodes / sizeof pdp11_opcodes[0]; 272*d2201f2fSdrahn const int pdp11_num_aliases = sizeof pdp11_aliases / sizeof pdp11_aliases[0]; 273