home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / src / binutils.2 / include / opcode / m68k.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-30  |  133.3 KB  |  2,424 lines

  1. /* Opcode table for m680[01234]0/m6888[12]/m68851.
  2.    Copyright 1989, 1991, 1992, 1993 Free Software Foundation.
  3.  
  4. This file is part of GDB, the GNU Debugger and GAS, the GNU Assembler.
  5.  
  6. Both GDB and GAS are free software; you can redistribute and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GDB and GAS are distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GDB or GAS; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /* GCC has trouble initializing such a large structure -- it's exponential or
  21.    something in the size.  So allow it to be broken in half.  */
  22. #ifndef BREAK_UP_BIG_DECL
  23. #define    BREAK_UP_BIG_DECL    /* nothing */
  24. #define    AND_OTHER_PART        0
  25. #endif
  26.  
  27. /* Syntax options: by default we recognize both MIT and Motorola
  28.    syntax.  This can be controlled with the macros MIT_SYNTAX_ONLY and
  29.    MOTOROLA_SYNTAX_ONLY (but these probably don't work very well,
  30.    since the original MOTOROLA_SYNTAX did not distinguish the syntaxes
  31.    very completely).  Other options are NO_DEFAULT_SIZES and
  32.    FIXED_SIZE_BRANCH.
  33.  
  34.    Motorola syntax uses periods between the opcode and the size,
  35.    whereas MIT syntax does not.  The opcode table contains the names
  36.    without the periods, and we remove the period from the name when
  37.    looking it up.  */
  38.  
  39. /* These are used as bit flags for arch below. */
  40.  
  41. /* Define this so that jump tables with calculable offsets are possible.
  42.    This option forces "bsr" and "bra" to always use 16-bit offsets, even
  43.    if smaller ones work work.  Other pseudo-instructions are available for
  44.    variable-sized offsets.  */
  45. #define FIXED_SIZE_BRANCH
  46.  
  47. enum m68k_architecture { a,b };
  48.  
  49. #define    _m68k_undef  0
  50. #define    m68000  0x01
  51. #define    m68008  m68000 /* synonym for -m68000.  otherwise unused. */
  52. #define    m68010  0x02
  53. #define    m68020  0x04
  54. #define    m68030  0x08
  55. #define m68ec030 m68030 /* similar enough to -m68030 to ignore differences;
  56.                gas will deal with the few differences.  */
  57. #define    m68040  0x10
  58. #define    m68881  0x20
  59. #define    m68882  m68881 /* synonym for -m68881.  otherwise unused. */
  60. #define    m68851  0x40
  61. #define cpu32    0x80    /* e.g., 68332 */
  62.  
  63.  /* handy aliases */
  64. #define    m68040up m68040
  65. #define    m68030up  (m68030 | m68040up)
  66. #define    m68020up  (m68020 | m68030up)
  67. #define    m68010up  (m68010 | cpu32 | m68020up)
  68. #define    m68000up  (m68000 | m68010up)
  69.  
  70. #define    mfloat  (m68881 | m68882 | m68040)
  71. #define    mmmu    (m68851 | m68030 | m68040)
  72.  
  73.  
  74.  /* note that differences in addressing modes that aren't distinguished
  75.     in the following table are handled explicitly by gas. */
  76.  
  77. struct m68k_opcode {
  78.   char *name;
  79.   unsigned long opcode;
  80.   unsigned long  match;
  81.   char *args;
  82.   int  arch;
  83. };
  84.  
  85. /* We store four bytes of opcode for all opcodes because that
  86.    is the most any of them need.  The actual length of an instruction
  87.    is always at least 2 bytes, and is as much longer as necessary to
  88.    hold the operands it has.
  89.  
  90.    The match component is a mask saying which bits must match
  91.    particular opcode in order for an instruction to be an instance
  92.    of that opcode.
  93.  
  94.    The args component is a string containing two characters
  95.    for each operand of the instruction.  The first specifies
  96.    the kind of operand; the second, the place it is stored.  */
  97.  
  98. /* Kinds of operands:
  99.    Characters used: AaBCcDdFfIJkLlMOPQRrSSsTtUVWXYZ3|*~%;@!&$?/#^+-
  100.    ("S" is used twice?!?  FIXME)
  101.  
  102.    D  data register only.  Stored as 3 bits.
  103.    A  address register only.  Stored as 3 bits.
  104.    a  address register indirect only.  Stored as 3 bits.
  105.    R  either kind of register.  Stored as 4 bits.
  106.    r  either kind of register indirect only.  Stored as 4 bits.
  107.       At the moment, used only for cas2 instruction.
  108.    F  floating point coprocessor register only.   Stored as 3 bits.
  109.    O  an offset (or width): immediate data 0-31 or data register.
  110.       Stored as 6 bits in special format for BF... insns.
  111.    +  autoincrement only.  Stored as 3 bits (number of the address register).
  112.    -  autodecrement only.  Stored as 3 bits (number of the address register).
  113.    Q  quick immediate data.  Stored as 3 bits.
  114.       This matches an immediate operand only when value is in range 1 .. 8.
  115.    M  moveq immediate data.  Stored as 8 bits.
  116.       This matches an immediate operand only when value is in range -128..127
  117.    T  trap vector immediate data.  Stored as 4 bits.
  118.  
  119.    k  K-factor for fmove.p instruction.   Stored as a 7-bit constant or
  120.       a three bit register offset, depending on the field type.
  121.  
  122.    #  immediate data.  Stored in special places (b, w or l)
  123.       which say how many bits to store.
  124.    ^  immediate data for floating point instructions.   Special places
  125.       are offset by 2 bytes from '#'...
  126.    B  pc-relative address, converted to an offset
  127.       that is treated as immediate data.
  128.    d  displacement and register.  Stores the register as 3 bits
  129.       and stores the displacement in the entire second word.
  130.  
  131.    C  the CCR.  No need to store it; this is just for filtering validity.
  132.    S  the SR.  No need to store, just as with CCR.
  133.    U  the USP.  No need to store, just as with CCR.
  134.  
  135.    I  Coprocessor ID.   Not printed if 1.   The Coprocessor ID is always
  136.       extracted from the 'd' field of word one, which means that an extended
  137.       coprocessor opcode can be skipped using the 'i' place, if needed.
  138.  
  139.    s  System Control register for the floating point coprocessor.
  140.    S  List of system control registers for floating point coprocessor.
  141.  
  142.    J  Misc register for movec instruction, stored in 'j' format.
  143.     Possible values:
  144.     0x000    SFC    Source Function Code reg    [40, 30, 20, 10]
  145.     0x001    DFC    Data Function Code reg        [40, 30, 20, 10]
  146.     0x002    CACR    Cache Control Register        [40, 30, 20]
  147.     0x800    USP    User Stack Pointer        [40, 30, 20, 10]
  148.     0x801    VBR    Vector Base reg            [40, 30, 20, 10]
  149.     0x802    CAAR    Cache Address Register        [    30, 20]
  150.     0x803    MSP    Master Stack Pointer        [40, 30, 20]
  151.     0x804    ISP    Interrupt Stack Pointer        [40, 30, 20]
  152.     0x003    TC    MMU Translation Control        [40]
  153.     0x004    ITT0    Instruction Transparent
  154.                 Translation reg 0    [40]
  155.     0x005    ITT1    Instruction Transparent
  156.                 Translation reg 1    [40]
  157.     0x006    DTT0    Data Transparent
  158.                 Translation reg 0    [40]
  159.     0x007    DTT1    Data Transparent
  160.                 Translation reg 1    [40]
  161.     0x805    MMUSR    MMU Status reg            [40]
  162.     0x806    URP    User Root Pointer        [40]
  163.     0x807    SRP    Supervisor Root Pointer        [40]
  164.  
  165.     L  Register list of the type d0-d7/a0-a7 etc.
  166.        (New!  Improved!  Can also hold fp0-fp7, as well!)
  167.        The assembler tries to see if the registers match the insn by
  168.        looking at where the insn wants them stored.
  169.  
  170.     l  Register list like L, but with all the bits reversed.
  171.        Used for going the other way. . .
  172.  
  173.     c  cache identifier which may be "nc" for no cache, "ic"
  174.        for instruction cache, "dc" for data cache, or "bc"
  175.        for both caches.  Used in cinv and cpush.  Always
  176.        stored in position "d".
  177.  
  178.  They are all stored as 6 bits using an address mode and a register number;
  179.  they differ in which addressing modes they match.
  180.  
  181.    *  all                    (modes 0-6,7.*)
  182.    ~  alterable memory                (modes 2-6,7.0,7.1)(not 0,1,7.~)
  183.    %  alterable                    (modes 0-6,7.0,7.1)(not 7.~)
  184.    ;  data                    (modes 0,2-6,7.*)(not 1)
  185.    @  data, but not immediate            (modes 0,2-6,7.? ? ?)(not 1,7.?)  This may really be ;, the 68020 book says it is
  186.    !  control                    (modes 2,5,6,7.*-)(not 0,1,3,4,7.4)
  187.    &  alterable control                (modes 2,5,6,7.0,7.1)(not 0,1,7.? ? ?)
  188.    $  alterable data                (modes 0,2-6,7.0,7.1)(not 1,7.~)
  189.    ?  alterable control, or data register    (modes 0,2,5,6,7.0,7.1)(not 1,3,4,7.~)
  190.    /  control, or data register            (modes 0,2,5,6,7.0,7.1,7.2,7.3)(not 1,3,4,7.4)
  191.    `  control, plus pre-dec, not simple indir.    (modes 4,5,6,7.*-)(not 0,1,2,3,7.4)
  192. */
  193.  
  194. /* JF: for the 68851 */
  195. /*
  196.    I didn't use much imagination in choosing the 
  197.    following codes, so many of them aren't very
  198.    mnemonic. -rab
  199.  
  200.    P  pmmu register
  201.     Possible values:
  202.     000    TC    Translation Control reg
  203.     100    CAL    Current Access Level
  204.     101    VAL    Validate Access Level
  205.     110    SCC    Stack Change Control
  206.     111    AC    Access Control
  207.  
  208.    3  68030-only pmmu registers
  209.     010    TT0    Transparent Translation reg 0
  210.             (aka Access Control reg 0 -- AC0 -- on 68ec030)
  211.     011    TT1    Transparent Translation reg 1
  212.             (aka Access Control reg 1 -- AC1 -- on 68ec030)
  213.  
  214.    W  wide pmmu registers
  215.     Possible values:
  216.     001    DRP    Dma Root Pointer
  217.     010    SRP    Supervisor Root Pointer
  218.     011    CRP    Cpu Root Pointer
  219.  
  220.    f    function code register
  221.     0    SFC
  222.     1    DFC
  223.  
  224.    V    VAL register only
  225.  
  226.    X    BADx, BACx
  227.     100    BAD    Breakpoint Acknowledge Data
  228.     101    BAC    Breakpoint Acknowledge Control
  229.  
  230.    Y    PSR
  231.    Z    PCSR
  232.  
  233.    |    memory         (modes 2-6, 7.*)
  234.  
  235.    t  address test level (68030 only)
  236.       Stored as 3 bites, range 0-7.
  237.       Also used for breakpoint instruction now.
  238.  
  239. */
  240.  
  241. /* Places to put an operand, for non-general operands:
  242.    s  source, low bits of first word.
  243.    d  dest, shifted 9 in first word
  244.    1  second word, shifted 12
  245.    2  second word, shifted 6
  246.    3  second word, shifted 0
  247.    4  third word, shifted 12
  248.    5  third word, shifted 6
  249.    6  third word, shifted 0
  250.    7  second word, shifted 7
  251.    8  second word, shifted 10
  252.    9  second word, shifted 5
  253.    D  store in both place 1 and place 3; for divul and divsl.
  254.    B  first word, low byte, for branch displacements
  255.    W  second word (entire), for branch displacements
  256.    L  second and third words (entire), for branch displacements (also overloaded for move16)
  257.    b  second word, low byte
  258.    w  second word (entire) [variable word/long branch offset for dbra]
  259.    l  second and third word (entire)
  260.    g  variable branch offset for bra and similar instructions.
  261.       The place to store depends on the magnitude of offset.
  262.    t  store in both place 7 and place 8; for floating point operations
  263.    c  branch offset for cpBcc operations.
  264.       The place to store is word two if bit six of word one is zero,
  265.       and words two and three if bit six of word one is one.
  266.    i  Increment by two, to skip over coprocessor extended operands.   Only
  267.       works with the 'I' format.
  268.    k  Dynamic K-factor field.   Bits 6-4 of word 2, used as a register number.
  269.       Also used for dynamic fmovem instruction.
  270.    C  floating point coprocessor constant - 7 bits.  Also used for static
  271.       K-factors...
  272.    j  Movec register #, stored in 12 low bits of second word.
  273.  
  274.  Places to put operand, for general operands:
  275.    d  destination, shifted 6 bits in first word
  276.    b  source, at low bit of first word, and immediate uses one byte
  277.    w  source, at low bit of first word, and immediate uses two bytes
  278.    l  source, at low bit of first word, and immediate uses four bytes
  279.    s  source, at low bit of first word.
  280.       Used sometimes in contexts where immediate is not allowed anyway.
  281.    f  single precision float, low bit of 1st word, immediate uses 4 bytes
  282.    F  double precision float, low bit of 1st word, immediate uses 8 bytes
  283.    x  extended precision float, low bit of 1st word, immediate uses 12 bytes
  284.    p  packed float, low bit of 1st word, immediate uses 12 bytes
  285. */
  286.  
  287. #define one(x) ((unsigned int) (x) << 16)
  288. #define two(x, y) (((unsigned int) (x) << 16) + y)
  289.  
  290. /*
  291.     *** DANGER WILL ROBINSON ***
  292.  
  293.    The assembler requires that all instances of the same mnemonic must be
  294.    consecutive.  If they aren't, the assembler will bomb at runtime
  295.  */
  296. #ifdef DONT_DEFINE_TABLE
  297. extern struct m68k_opcode m68k_opcodes[];
  298. #else
  299. struct m68k_opcode m68k_opcodes[] =
  300. {
  301. {"abcd",    one(0140400),        one(0170770), "DsDd", m68000up },
  302. {"abcd",    one(0140410),        one(0170770), "-s-d", m68000up },
  303.  
  304.         /* Add instructions */
  305. {"addal",    one(0150700),        one(0170700), "*lAd", m68000up },
  306. {"addaw",    one(0150300),        one(0170700), "*wAd", m68000up },
  307. {"addib",    one(0003000),        one(0177700), "#b$b", m68000up },
  308.  
  309. {"addil",    one(0003200),        one(0177700), "#l$l", m68000up },
  310. {"addiw",    one(0003100),        one(0177700), "#w$w", m68000up },
  311. {"addqb",    one(0050000),        one(0170700), "Qd$b", m68000up },
  312. #ifndef MIT_SYNTAX_ONLY
  313. {"addqb",    one(0003000),        one(0177700), "#b$b", m68000up }, /* FIXNIEL: addi instead of addq because to many frags */
  314. #endif
  315. {"addql",    one(0050200),        one(0170700), "Qd%l", m68000up },
  316. #ifndef MIT_SYNTAX_ONLY
  317. {"addql",    one(0003200),        one(0177700), "#l$l", m68000up }, /* FIXNIEL: addi instead of addq because to many frags */
  318. #endif
  319. {"addqw",    one(0050100),        one(0170700), "Qd%w", m68000up },
  320. #ifndef MIT_SYNTAX_ONLY
  321. {"addqw",    one(0003100),        one(0177700), "#w$w", m68000up }, /* FIXNIEL: addi instead of addq because to many frags */
  322. #endif
  323.  
  324. {"addb",    one(0050000),        one(0170700), "Qd$b", m68000up },    /* addq written as add */
  325. {"addb",    one(0003000),        one(0177700), "#b$b", m68000up },    /* addi written as add */
  326. {"addb",    one(0150000),        one(0170700), ";bDd", m68000up },    /* addb <ea>,    Dd */
  327. {"addb",    one(0150400),        one(0170700), "Dd~b", m68000up },    /* add.b Dd,    <ea> */
  328.  
  329. {"addw",    one(0150300),        one(0170700), "*wAd", m68000up },    /* adda written as add */
  330. {"addw",    one(0050100),        one(0170700), "Qd%w", m68000up },    /* addq written as add */
  331. {"addw",    one(0003100),        one(0177700), "#w$w", m68000up },    /* addi written as add */
  332. {"addw",    one(0150100),        one(0170700), "*wDd", m68000up },    /* addw <ea>,    Dd */
  333. {"addw",    one(0150500),        one(0170700), "Dd~w", m68000up },    /* addw Dd,    <ea> */
  334.  
  335. {"addl",    one(0050200),        one(0170700), "Qd%l", m68000up },    /* addq written as add */
  336. {"addl",    one(0003200),        one(0177700), "#l$l", m68000up },    /* addi written as add */
  337. {"addl",    one(0150700),        one(0170700), "*lAd", m68000up },    /* adda written as add */
  338. {"addl",    one(0150200),        one(0170700), "*lDd", m68000up },    /* addl <ea>,    Dd */
  339. {"addl",    one(0150600),        one(0170700), "Dd~l", m68000up },    /* addl Dd,    <ea> */
  340.  
  341. #ifndef NO_DEFAULT_SIZES
  342. {"addi",    one(0050200),        one(0170700), "Qd%l", m68000up },
  343. {"addi",    one(0003200),        one(0177700), "#l$l", m68000up },    /* addi written as add */
  344. {"addq",    one(0050100),        one(0170700), "Qd%w", m68000up },
  345. #endif
  346.  
  347. {"addxb",    one(0150400),        one(0170770), "DsDd", m68000up },
  348. {"addxb",    one(0150410),        one(0170770), "-s-d", m68000up },
  349. {"addxl",    one(0150600),        one(0170770), "DsDd", m68000up },
  350. {"addxl",    one(0150610),        one(0170770), "-s-d", m68000up },
  351. {"addxw",    one(0150500),        one(0170770), "DsDd", m68000up },
  352. {"addxw",    one(0150510),        one(0170770), "-s-d", m68000up },
  353.  
  354. {"andib",    one(0001000),        one(0177700), "#b$b", m68000up },
  355. {"andib",    one(0001074),        one(0177777), "#bCb", m68000up },    /* andi to ccr */
  356. {"andiw",    one(0001100),        one(0177700), "#w$w", m68000up },
  357. {"andiw",    one(0001174),        one(0177777), "#wSw", m68000up },    /* andi to sr */
  358. {"andil",    one(0001200),        one(0177700), "#l$l", m68000up },
  359. {"andb",    one(0001000),        one(0177700), "#b$b", m68000up },    /* andi written as or */
  360. {"andb",    one(0001074),        one(0177777), "#bCb", m68000up },    /* andi to ccr */
  361. {"andb",    one(0140000),        one(0170700), ";bDd", m68000up },    /* memory to register */
  362. {"andb",    one(0140400),        one(0170700), "Dd~b", m68000up },    /* register to memory */
  363. {"andw",    one(0001100),        one(0177700), "#w$w", m68000up },    /* andi written as or */
  364. {"andw",    one(0001174),        one(0177777), "#wSw", m68000up },    /* andi to sr */
  365. {"andw",    one(0140100),        one(0170700), ";wDd", m68000up },    /* memory to register */
  366. {"andw",    one(0140500),        one(0170700), "Dd~w", m68000up },    /* register to memory */
  367. {"andl",    one(0001200),        one(0177700), "#l$l", m68000up },    /* andi written as or */
  368. {"andl",    one(0140200),        one(0170700), ";lDd", m68000up },    /* memory to register */
  369. {"andl",    one(0140600),        one(0170700), "Dd~l", m68000up },    /* register to memory */
  370.  
  371. #ifndef NO_DEFAULT_SIZES
  372. {"andi",    one(0001200),        one(0177700), "#l$l", m68000up },
  373. {"andi",    one(0001174),        one(0177777), "#wSw", m68000up },    /* andi to sr */
  374. {"andi",    one(0001074),        one(0177777), "#bCb", m68000up },    /* andi to ccr */
  375. #endif
  376.  
  377. {"aslb",    one(0160400),        one(0170770), "QdDs", m68000up },
  378. {"aslb",    one(0160440),        one(0170770), "DdDs", m68000up },
  379. {"asll",    one(0160600),        one(0170770), "QdDs", m68000up },
  380. {"asll",    one(0160640),        one(0170770), "DdDs", m68000up },
  381. {"aslw",    one(0160500),        one(0170770), "QdDs", m68000up },
  382. {"aslw",    one(0160540),        one(0170770), "DdDs", m68000up },
  383. {"aslw",    one(0160700),        one(0177700), "~s",   m68000up },    /* Shift memory */
  384. {"asrb",    one(0160000),        one(0170770), "QdDs", m68000up },
  385. {"asrb",    one(0160040),        one(0170770), "DdDs", m68000up },
  386. {"asrl",    one(0160200),        one(0170770), "QdDs", m68000up },
  387. {"asrl",    one(0160240),        one(0170770), "DdDs", m68000up },
  388. {"asrw",    one(0160100),        one(0170770), "QdDs", m68000up },
  389. {"asrw",    one(0160140),        one(0170770), "DdDs", m68000up },
  390. {"asrw",    one(0160300),        one(0177700), "~s",   m68000up },    /* Shift memory */
  391.  
  392. #ifndef FIXED_SIZE_BRANCH
  393. #define BRANCH "Bg"
  394. #define BRANCH_MASK one(0xFF00)
  395. #else
  396. /* Fixed-size branches with 16-bit offsets */
  397. #define BRANCH "BW"
  398. #define BRANCH_MASK one(0xFFFF) /* 8-bit displacement must be 0 */
  399. #endif
  400.  
  401. {"bhi",        one(0061000),        BRANCH_MASK, BRANCH, m68000up },
  402. {"bls",        one(0061400),        BRANCH_MASK, BRANCH, m68000up },
  403. {"bcc",        one(0062000),        BRANCH_MASK, BRANCH, m68000up },
  404. #ifndef MOTOROLA_SYNTAX_ONLY
  405. {"jfnlt",    one(0062000),        BRANCH_MASK, BRANCH, m68000up }, /* apparently a sun alias */
  406. #endif
  407. {"bcs",        one(0062400),        BRANCH_MASK, BRANCH, m68000up },
  408. {"bne",        one(0063000),        BRANCH_MASK, BRANCH, m68000up },
  409. {"beq",        one(0063400),        BRANCH_MASK, BRANCH, m68000up },
  410. {"bvc",        one(0064000),        BRANCH_MASK, BRANCH, m68000up },
  411. {"bvs",        one(0064400),        BRANCH_MASK, BRANCH, m68000up },
  412. {"bpl",        one(0065000),        BRANCH_MASK, BRANCH, m68000up },
  413. {"bmi",        one(0065400),        BRANCH_MASK, BRANCH, m68000up },
  414. {"bge",        one(0066000),        BRANCH_MASK, BRANCH, m68000up },
  415. {"blt",        one(0066400),        BRANCH_MASK, BRANCH, m68000up },
  416. {"bgt",        one(0067000),        BRANCH_MASK, BRANCH, m68000up },
  417. {"ble",        one(0067400),        BRANCH_MASK, BRANCH, m68000up },
  418. #ifndef MOTOROLA_SYNTAX_ONLY
  419. {"jfngt",    one(0067400),        BRANCH_MASK, BRANCH, m68000up }, /* apparently a sun alias */
  420. #endif
  421.  
  422. #ifndef FIXED_SIZE_BRANCH
  423. {"bsr",        one(0060400),        one(0177400), "Bg", m68000up },
  424. {"bsr",        one(0047200),        one(0177700),  "!s", m68000up },
  425. {"bra",        one(0060000),        one(0177400),  "Bg", m68000up },
  426. {"bra",        one(0047300),        one(0177700),  "!s", m68000up },
  427. #else
  428. {"bra",        one(0060000),        one(0177777), "BW", m68000up },
  429. {"bsr",        one(0060400),        one(0177777), "BW", m68000up },
  430. #endif
  431.  
  432. /* Fixed-size branches with short (byte) offsets */
  433.  
  434. {"bhis",    one(0061000),        one(0177400), "BB", m68000up },
  435. {"blss",    one(0061400),        one(0177400), "BB", m68000up },
  436. {"bccs",    one(0062000),        one(0177400), "BB", m68000up },
  437. {"bcss",    one(0062400),        one(0177400), "BB", m68000up },
  438. {"bnes",    one(0063000),        one(0177400), "BB", m68000up },
  439. {"beqs",    one(0063400),        one(0177400), "BB", m68000up },
  440. {"jfeq",    one(0063400),        one(0177400), "BB", m68000up }, /* apparently a sun alias */
  441. {"bvcs",    one(0064000),        one(0177400), "BB", m68000up },
  442. {"bvss",    one(0064400),        one(0177400), "BB", m68000up },
  443. {"bpls",    one(0065000),        one(0177400), "BB", m68000up },
  444. {"bmis",    one(0065400),        one(0177400), "BB", m68000up },
  445. {"bges",    one(0066000),        one(0177400), "BB", m68000up },
  446. {"blts",    one(0066400),        one(0177400), "BB", m68000up },
  447. {"bgts",    one(0067000),        one(0177400), "BB", m68000up },
  448. {"bles",    one(0067400),        one(0177400), "BB", m68000up },
  449. {"bras",    one(0060000),        one(0177400), "BB", m68000up },
  450. {"bsrs",    one(0060400),        one(0177400), "BB", m68000up },
  451.  
  452. /* Fixed-size branches with long (32-bit) offsets */
  453.  
  454. {"bhil",    one(0061377),        one(0177777), "BL", m68020up | cpu32 },
  455. {"blsl",    one(0061777),        one(0177777), "BL", m68020up | cpu32 },
  456. {"bccl",    one(0062377),        one(0177777), "BL", m68020up | cpu32 },
  457. {"bcsl",    one(0062777),        one(0177777), "BL", m68020up | cpu32 },
  458. {"bnel",    one(0063377),        one(0177777), "BL", m68020up | cpu32 },
  459. {"beql",    one(0063777),        one(0177777), "BL", m68020up | cpu32 },
  460. {"bvcl",    one(0064377),        one(0177777), "BL", m68020up | cpu32 },
  461. {"bvsl",    one(0064777),        one(0177777), "BL", m68020up | cpu32 },
  462. {"bpll",    one(0065377),        one(0177777), "BL", m68020up | cpu32 },
  463. {"bmil",    one(0065777),        one(0177777), "BL", m68020up | cpu32 },
  464. {"bgel",    one(0066377),        one(0177777), "BL", m68020up | cpu32 },
  465. {"bltl",    one(0066777),        one(0177777), "BL", m68020up | cpu32 },
  466. {"bgtl",    one(0067377),        one(0177777), "BL", m68020up | cpu32 },
  467. {"blel",    one(0067777),        one(0177777), "BL", m68020up | cpu32 },
  468. {"bral",    one(0060377),        one(0177777), "BL", m68020up | cpu32 },
  469. {"bsrl",    one(0060777),        one(0177777), "BL", m68020up | cpu32 },
  470.  
  471. /* We now return you to our regularly scheduled instruction set */
  472.  
  473. {"bchg",    one(0000500),        one(0170700),        "Dd$s", m68000up },
  474. {"bchg",    one(0004100),        one(0177700),        "#b$s", m68000up },
  475. {"bclr",    one(0000600),        one(0170700),        "Dd$s", m68000up },
  476. {"bclr",    one(0004200),        one(0177700),        "#b$s", m68000up },
  477.  
  478. #ifndef MIT_SYNTAX_ONLY
  479. {"bchgb",    one(0000500),        one(0170700),        "Dd$s", m68000up },
  480. {"bchgb",    one(0004100),        one(0177700),        "#b$s", m68000up },
  481. {"bclrb",    one(0000600),        one(0170700),        "Dd$s", m68000up },
  482. {"bclrb",    one(0004200),        one(0177700),        "#b$s", m68000up },
  483.  
  484. {"bchgl",    one(0000500),        one(0170700),        "Dd$s", m68000up },
  485. {"bchgl",    one(0004100),        one(0177700),        "#b$s", m68000up },
  486. {"bclrl",    one(0000600),        one(0170700),        "Dd$s", m68000up },
  487. {"bclrl",    one(0004200),        one(0177700),        "#b$s", m68000up },
  488. #endif
  489.  
  490. {"bfchg",    two(0165300, 0),    two(0177700, 0170000),    "?sO2O3",   m68020up },
  491. {"bfclr",    two(0166300, 0),    two(0177700, 0170000),    "?sO2O3",   m68020up },
  492. {"bfexts",    two(0165700, 0),    two(0177700, 0100000),    "/sO2O3D1", m68020up },
  493. {"bfextu",    two(0164700, 0),    two(0177700, 0100000),    "/sO2O3D1", m68020up },
  494. {"bfffo",    two(0166700, 0),    two(0177700, 0100000),    "/sO2O3D1", m68020up },
  495. {"bfins",    two(0167700, 0),    two(0177700, 0100000),    "D1?sO2O3", m68020up },
  496. {"bfset",    two(0167300, 0),    two(0177700, 0170000),    "?sO2O3",   m68020up },
  497. {"bftst",    two(0164300, 0),    two(0177700, 0170000),    "/sO2O3",   m68020up },
  498. {"bkpt",    one(0044110),        one(0177770),        "ts",       m68020up | cpu32 },
  499.  
  500. {"bgnd",    one(0045372),        one(0177777),        "",    cpu32 },
  501.  
  502. {"bset",    one(0000700),        one(0170700),        "Dd$s", m68000up },
  503. {"bset",    one(0004300),        one(0177700),        "#b$s", m68000up },
  504. {"btst",    one(0000400),        one(0170700),        "Dd@s", m68000up },
  505. {"btst",    one(0004000),        one(0177700),        "#b@s", m68000up },
  506. #ifndef MIT_SYNTAX_ONLY
  507. {"bsetb",    one(0000700),        one(0170700),        "Dd$s", m68000up },
  508. {"bsetb",    one(0004300),        one(0177700),        "#b$s", m68000up },
  509. {"btstb",    one(0000400),        one(0170700),        "Dd@s", m68000up },
  510. {"btstb",    one(0004000),        one(0177700),        "#b@s", m68000up },
  511.  
  512. {"bsetl",    one(0000700),        one(0170700),        "Dd$s", m68000up },
  513. {"bsetl",    one(0004300),        one(0177700),        "#b$s", m68000up },
  514. {"btstl",    one(0000400),        one(0170700),        "Dd@s", m68000up },
  515. {"btstl",    one(0004000),        one(0177700),        "#b@s", m68000up },
  516. #endif
  517.  
  518. {"callm",    one(0003300),        one(0177700),        "#b!s", m68020 },
  519.  
  520. {"cas2l",    two(0007374, 0),    two(0177777, 0007070),    "D3D6D2D5r1r4", m68020up }, /* JF FOO really a 3 word ins */
  521. {"cas2l",    two(0007374, 0),    two(0177777, 0007070),    "D3D6D2D5R1R4", m68020up }, /* JF ditto */
  522. {"cas2w",    two(0006374, 0),    two(0177777, 0007070),    "D3D6D2D5r1r4", m68020up }, /* JF ditto */
  523. {"cas2w",    two(0006374, 0),    two(0177777, 0007070),    "D3D6D2D5R1R4", m68020up }, /* JF ditto */
  524. {"casb",    two(0005300, 0),    two(0177700, 0177070),    "D3D2~s", m68020up },
  525. {"casl",    two(0007300, 0),    two(0177700, 0177070),    "D3D2~s", m68020up },
  526. {"casw",    two(0006300, 0),    two(0177700, 0177070),    "D3D2~s", m68020up },
  527.  
  528. #ifndef NO_DEFAULT_SIZES
  529. {"casw",    two(0006300, 0),    two(0177700, 0177070),    "D3D2~s", m68020up },
  530. {"cas",        two(0006300, 0),    two(0177700, 0177070),    "D3D2~s", m68020up },
  531. {"cas2",    two(0006374, 0),    two(0177777, 0007070),    "D3D6D2D5r1r4", m68020up }, /* JF ditto */
  532. {"cas2",    two(0006374, 0),    two(0177777, 0007070),    "D3D6D2D5R1R4", m68020up }, /* JF ditto */
  533. #endif
  534.  
  535. {"chk2b",    two(0000300, 0004000),    two(0177700, 07777),    "!sR1", m68020up | cpu32 },
  536. {"chk2l",    two(0002300, 0004000),    two(0177700, 07777),    "!sR1", m68020up | cpu32 },
  537. {"chk2w",    two(0001300, 0004000),    two(0177700, 07777),    "!sR1", m68020up | cpu32 },
  538.  
  539. #ifndef NO_DEFAULT_SIZES
  540. {"chk",      one(0040600),        one(0170700),        ";wDd", m68000up },
  541. {"chk",        one(0040400),        one(0170700),        ";lDd", m68000up },
  542.  
  543. /*  {"chk",    one(0040600),        one(0170700),        ";wDd"}, JF FOO this looks wrong */
  544.  
  545. {"chk2",    two(0001300, 0004000),    two(0177700, 07777),    "!sR1", m68020up | cpu32 },
  546. #endif
  547.  
  548. {"chkl",    one(0040400),        one(0170700),        ";lDd", m68000up },
  549. #ifndef MIT_SYNTAX_ONLY
  550. {"chkw",    two(0001300, 0004000),    two(0177700, 07777),    "!sR1", m68020up | cpu32 },
  551. #endif
  552.  {"chkw",    one(0040600),        one(0170700),        ";wDd", m68000up },
  553.  
  554. #define SCOPE_LINE (0x1 << 3)
  555. #define SCOPE_PAGE (0x2 << 3)
  556. #define SCOPE_ALL  (0x3 << 3)
  557.  
  558. {"cinva",    one(0xf400|SCOPE_ALL),  one(0xff38), "ce",   m68040 },
  559. {"cinvl",    one(0xf400|SCOPE_LINE), one(0xff38), "ceas", m68040 },
  560. {"cinvp",    one(0xf400|SCOPE_PAGE), one(0xff38), "ceas", m68040 },
  561.  
  562. {"cpusha",    one(0xf420|SCOPE_ALL),  one(0xff38), "ce",   m68040 },
  563. {"cpushl",    one(0xf420|SCOPE_LINE), one(0xff38), "ceas", m68040 },
  564. {"cpushp",    one(0xf420|SCOPE_PAGE), one(0xff38), "ceas", m68040 },
  565.  
  566. #undef SCOPE_LINE
  567. #undef SCOPE_PAGE
  568. #undef SCOPE_ALL
  569. {"clrb",    one(0041000),        one(0177700),        "$s", m68000up },
  570. {"clrl",    one(0041200),        one(0177700),        "$s", m68000up },
  571. {"clrw",    one(0041100),        one(0177700),        "$s", m68000up },
  572.  
  573.  
  574. {"cmp2b",    two(0000300, 0),    two(0177700, 07777),    "!sR1", m68020up | cpu32 },
  575. {"cmp2l",    two(0002300, 0),    two(0177700, 07777),    "!sR1", m68020up | cpu32 },
  576. {"cmp2w",    two(0001300, 0),    two(0177700, 07777),    "!sR1", m68020up | cpu32 },
  577. {"cmpal",    one(0130700),        one(0170700),        "*lAd", m68000up },
  578. {"cmpaw",    one(0130300),        one(0170700),        "*wAd", m68000up },
  579.  
  580. {"cmpib",    one(0006000),        one(0177700),        "#b;b", m68000up },
  581. {"cmpil",    one(0006200),        one(0177700),        "#l;l", m68000up },
  582. {"cmpiw",    one(0006100),        one(0177700),        "#w;w", m68000up },
  583. {"cmpb",    one(0006000),        one(0177700),        "#b;b", m68000up },    /* cmpi written as cmp */
  584. {"cmpb",    one(0130000),        one(0170700),        ";bDd", m68000up },
  585. #ifndef MIT_SYNTAX_ONLY
  586. {"cmpb",    one(0130410),        one(0170770),        "+s+d", m68000up },     /* cmpm written as cmp */
  587. #endif
  588. {"cmpw",    one(0006100),        one(0177700),        "#w;w", m68000up },
  589. {"cmpw",    one(0130100),        one(0170700),        "*wDd", m68000up },
  590. {"cmpw",    one(0130300),        one(0170700),        "*wAd", m68000up },    /* cmpa written as cmp */
  591. #ifndef MIT_SYNTAX_ONLY
  592. {"cmpw",    one(0130510),        one(0170770),        "+s+d", m68000up },    /* cmpm written as cmp */
  593. #endif
  594. {"cmpl",    one(0006200),        one(0177700),        "#l;l", m68000up },
  595. {"cmpl",    one(0130200),        one(0170700),        "*lDd", m68000up },
  596. {"cmpl",    one(0130700),        one(0170700),        "*lAd", m68000up },
  597. #ifndef MIT_SYNTAX_ONLY
  598. {"cmpl",    one(0130610),        one(0170770),        "+s+d", m68000up },    /* cmpm written as cmp */
  599. #endif
  600.  
  601. {"cmpmb",    one(0130410),        one(0170770),        "+s+d", m68000up },
  602. {"cmpml",    one(0130610),        one(0170770),        "+s+d", m68000up },
  603. {"cmpmw",    one(0130510),        one(0170770),        "+s+d", m68000up },
  604. #ifndef NO_DEFAULT_SIZES
  605. {"cmp",        one(0006200),        one(0177700),        "#l;l", m68000up },
  606. {"cmp",        one(0130200),        one(0170700),        "*lDd", m68000up },
  607. {"cmp",        one(0130700),        one(0170700),        "*lAd", m68000up },
  608. {"cmp",        one(0130510),        one(0170770),        "+s+d", m68000up },    /* cmpm written as cmp */
  609.  
  610. {"cmpi",    one(0006200),        one(0177700),        "#l;l", m68000up },
  611.  
  612. {"cmp2",    two(0001300, 0),    two(0177700, 07777),    "!sR1", m68020up | cpu32 },
  613. {"cmpm",    one(0130510),        one(0170770),        "+s+d", m68000up },
  614. #endif
  615.  
  616. {"dbcc",    one(0052310),        one(0177770),        "DsBw", m68000up },
  617. {"dbcs",    one(0052710),        one(0177770),        "DsBw", m68000up },
  618. {"dbeq",    one(0053710),        one(0177770),        "DsBw", m68000up },
  619. {"dbf",        one(0050710),        one(0177770),        "DsBw", m68000up },
  620. {"dbge",    one(0056310),        one(0177770),        "DsBw", m68000up },
  621. {"dbgt",    one(0057310),        one(0177770),        "DsBw", m68000up },
  622. {"dbhi",    one(0051310),        one(0177770),        "DsBw", m68000up },
  623. {"dble",    one(0057710),        one(0177770),        "DsBw", m68000up },
  624. {"dbls",    one(0051710),        one(0177770),        "DsBw", m68000up },
  625. {"dblt",    one(0056710),        one(0177770),        "DsBw", m68000up },
  626. {"dbmi",    one(0055710),        one(0177770),        "DsBw", m68000up },
  627. {"dbne",    one(0053310),        one(0177770),        "DsBw", m68000up },
  628. {"dbpl",    one(0055310),        one(0177770),        "DsBw", m68000up },
  629. {"dbra",    one(0050710),        one(0177770),        "DsBw", m68000up },
  630. {"dbt",        one(0050310),        one(0177770),        "DsBw", m68000up },
  631. {"dbvc",    one(0054310),        one(0177770),        "DsBw", m68000up },
  632. {"dbvs",    one(0054710),        one(0177770),        "DsBw", m68000up },
  633.  
  634. #ifndef MIT_SYNTAX_ONLY
  635. {"tdivsl",    two(0046100, 0006000),    two(0177700, 0107770),    ";lD3D1", m68020up | cpu32 },
  636. {"tdivsl",    two(0046100, 0004000),    two(0177700, 0107770),    ";lDD", m68020up | cpu32 },
  637. #endif
  638.  
  639. {"divsl",    two(0046100, 0006000),    two(0177700, 0107770),    ";lD3D1", m68020up | cpu32 },
  640. {"divsl",    two(0046100, 0004000),    two(0177700, 0107770),    ";lDD", m68020up | cpu32 },
  641. {"divsll",    two(0046100, 0004000),    two(0177700, 0107770),    ";lD3D1", m68020up | cpu32 },
  642. {"divsw",    one(0100700),        one(0170700),        ";wDd", m68000up },
  643. {"divs",    one(0100700),        one(0170700),        ";wDd", m68000up },
  644. {"divul",    two(0046100, 0002000),    two(0177700, 0107770),    ";lD3D1", m68020up | cpu32 },
  645. {"divul",    two(0046100, 0000000),    two(0177700, 0107770),    ";lDD", m68020up | cpu32 },
  646. {"divull",    two(0046100, 0000000),    two(0177700, 0107770),    ";lD3D1", m68020up | cpu32 },
  647. {"divuw",    one(0100300),        one(0170700),        ";wDd", m68000up },
  648. {"divu",    one(0100300),        one(0170700),        ";wDd", m68000up },
  649.  
  650. {"eorb",    one(0005000),        one(0177700),        "#b$s", m68000up },    /* eori written as or */
  651. {"eorb",    one(0005074),        one(0177777),        "#bCs", m68000up },    /* eori to ccr */
  652. {"eorb",    one(0130400),        one(0170700),        "Dd$s", m68000up },    /* register to memory */
  653. {"eorib",    one(0005000),        one(0177700),        "#b$s", m68000up },
  654. {"eorib",    one(0005074),        one(0177777),        "#bCs", m68000up },    /* eori to ccr */
  655. {"eoril",    one(0005200),        one(0177700),        "#l$s", m68000up },
  656. {"eoriw",    one(0005100),        one(0177700),        "#w$s", m68000up },
  657. {"eoriw",    one(0005174),        one(0177777),        "#wSs", m68000up },    /* eori to sr */
  658. {"eorl",    one(0005200),        one(0177700),        "#l$s", m68000up },
  659. {"eorl",    one(0130600),        one(0170700),        "Dd$s", m68000up },
  660. {"eorw",    one(0005100),        one(0177700),        "#w$s", m68000up },
  661. {"eorw",    one(0005174),        one(0177777),        "#wSs", m68000up },    /* eori to sr */
  662. {"eorw",    one(0130500),        one(0170700),        "Dd$s", m68000up },
  663. #ifndef NO_DEFAULT_SIZES
  664. {"eor",        one(0005074),        one(0177777),        "#bCs", m68000up },    /* eorb to ccr */
  665. {"eor",        one(0005174),        one(0177777),        "#wSs", m68000up },    /* eori to sr */
  666. {"eori",    one(0005074),        one(0177777),        "#bCs", m68000up },    /* eori to ccr */
  667. {"eori",    one(0005174),        one(0177777),        "#wSs", m68000up },    /* eoriw to sr */
  668. #endif
  669.  
  670. {"exg",        one(0140500),        one(0170770),        "DdDs", m68000up },
  671. {"exg",        one(0140510),        one(0170770),        "AdAs", m68000up },
  672. {"exg",        one(0140610),        one(0170770),        "DdAs", m68000up },
  673. {"exg",        one(0140610),        one(0170770),        "AsDd", m68000up },
  674.  
  675. {"extw",    one(0044200),        one(0177770),        "Ds", m68000up },
  676. {"extl",    one(0044300),        one(0177770),        "Ds", m68000up },
  677. {"extbl",    one(0044700),        one(0177770),        "Ds", m68020up | cpu32 },
  678. #ifndef MIT_SYNTAX_ONLY
  679. {"ext",        one(0044200),        one(0177770),        "Ds", m68000up },
  680. {"extwl",    one(0044300),        one(0177770),        "Ds", m68000up },
  681. {"extbw",    one(0044200),        one(0177770),        "Ds", m68000up },
  682. #endif
  683.  
  684. /* float stuff starts here */
  685.  
  686. {"fabsb",    two(0xF000, 0x5818),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  687. {"fabsd",    two(0xF000, 0x5418),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  688. {"fabsl",    two(0xF000, 0x4018),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  689. {"fabsp",    two(0xF000, 0x4C18),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  690. {"fabss",    two(0xF000, 0x4418),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  691. {"fabsw",    two(0xF000, 0x5018),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  692. {"fabsx",    two(0xF000, 0x0018),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  693. {"fabsx",    two(0xF000, 0x4818),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  694. {"fabsx",    two(0xF000, 0x0018),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  695. {"fsabsb",    two(0xF000, 0x5858),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  696. {"fsabsd",    two(0xF000, 0x5458),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  697. {"fsabsl",    two(0xF000, 0x4058),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  698. {"fsabsp",    two(0xF000, 0x4C58),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  699. {"fsabss",    two(0xF000, 0x4458),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  700. {"fsabsw",    two(0xF000, 0x5058),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  701. {"fsabsx",    two(0xF000, 0x0058),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  702. {"fsabsx",    two(0xF000, 0x4858),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  703. {"fsabsx",    two(0xF000, 0x0058),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 },
  704.  
  705. {"fdabsb",    two(0xF000, 0x585c),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040},
  706. {"fdabsd",    two(0xF000, 0x545c),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040},
  707. {"fdabsl",    two(0xF000, 0x405c),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040},
  708. {"fdabsp",    two(0xF000, 0x4C5c),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040},
  709. {"fdabss",    two(0xF000, 0x445c),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040},
  710. {"fdabsw",    two(0xF000, 0x505c),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040},
  711. {"fdabsx",    two(0xF000, 0x005c),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040},
  712. {"fdabsx",    two(0xF000, 0x485c),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040},
  713. {"fdabsx",    two(0xF000, 0x005c),    two(0xF1C0, 0xE07F),    "IiFt",   m68040},
  714. {"facosb",    two(0xF000, 0x581C),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  715. {"facosd",    two(0xF000, 0x541C),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  716. {"facosl",    two(0xF000, 0x401C),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  717. {"facosp",    two(0xF000, 0x4C1C),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  718. {"facoss",    two(0xF000, 0x441C),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  719. {"facosw",    two(0xF000, 0x501C),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  720. {"facosx",    two(0xF000, 0x001C),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  721. {"facosx",    two(0xF000, 0x481C),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  722. {"facosx",    two(0xF000, 0x001C),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  723.  
  724. {"faddb",    two(0xF000, 0x5822),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  725. {"faddd",    two(0xF000, 0x5422),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  726. {"faddl",    two(0xF000, 0x4022),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  727. {"faddp",    two(0xF000, 0x4C22),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  728. {"fadds",    two(0xF000, 0x4422),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  729. {"faddw",    two(0xF000, 0x5022),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  730. {"faddx",    two(0xF000, 0x0022),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  731. {"faddx",    two(0xF000, 0x4822),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  732. /* {"faddx",    two(0xF000, 0x0022),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat }, JF removed */
  733.  
  734. {"fsaddb",    two(0xF000, 0x5862),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  735. {"fsaddd",    two(0xF000, 0x5462),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  736. {"fsaddl",    two(0xF000, 0x4062),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  737. {"fsaddp",    two(0xF000, 0x4C62),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  738. {"fsadds",    two(0xF000, 0x4462),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  739. {"fsaddw",    two(0xF000, 0x5062),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  740. {"fsaddx",    two(0xF000, 0x0062),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  741. {"fsaddx",    two(0xF000, 0x4862),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  742. /* {"fsaddx",    two(0xF000, 0x0062),    two(0xF1C0, 0xE07F),    "IiFt", m68040 }, JF removed */
  743.  
  744. {"fdaddb",    two(0xF000, 0x5866),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  745. {"fdaddd",    two(0xF000, 0x5466),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  746. {"fdaddl",    two(0xF000, 0x4066),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  747. {"fdaddp",    two(0xF000, 0x4C66),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  748. {"fdadds",    two(0xF000, 0x4466),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  749. {"fdaddw",    two(0xF000, 0x5066),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  750. {"fdaddx",    two(0xF000, 0x0066),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  751. {"fdaddx",    two(0xF000, 0x4866),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  752. /* {"faddx",    two(0xF000, 0x0066),    two(0xF1C0, 0xE07F),    "IiFt", m68040 }, JF removed */
  753.  
  754. {"fasinb",    two(0xF000, 0x580C),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  755. {"fasind",    two(0xF000, 0x540C),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  756. {"fasinl",    two(0xF000, 0x400C),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  757. {"fasinp",    two(0xF000, 0x4C0C),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  758. {"fasins",    two(0xF000, 0x440C),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  759. {"fasinw",    two(0xF000, 0x500C),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  760. {"fasinx",    two(0xF000, 0x000C),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  761. {"fasinx",    two(0xF000, 0x480C),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  762. {"fasinx",    two(0xF000, 0x000C),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  763.  
  764. {"fatanb",    two(0xF000, 0x580A),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  765. {"fatand",    two(0xF000, 0x540A),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  766. {"fatanl",    two(0xF000, 0x400A),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  767. {"fatanp",    two(0xF000, 0x4C0A),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  768. {"fatans",    two(0xF000, 0x440A),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  769. {"fatanw",    two(0xF000, 0x500A),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  770. {"fatanx",    two(0xF000, 0x000A),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  771. {"fatanx",    two(0xF000, 0x480A),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  772. {"fatanx",    two(0xF000, 0x000A),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  773.  
  774. {"fatanhb",    two(0xF000, 0x580D),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  775. {"fatanhd",    two(0xF000, 0x540D),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  776. {"fatanhl",    two(0xF000, 0x400D),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  777. {"fatanhp",    two(0xF000, 0x4C0D),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  778. {"fatanhs",    two(0xF000, 0x440D),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  779. {"fatanhw",    two(0xF000, 0x500D),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  780. {"fatanhx",    two(0xF000, 0x000D),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  781. {"fatanhx",    two(0xF000, 0x480D),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  782. {"fatanhx",    two(0xF000, 0x000D),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  783.  
  784. /* Fixed-size Float branches */
  785.  
  786. {"fbeq",    one(0xF081),        one(0xF1BF),        "IdBW", mfloat },
  787. {"fbf",        one(0xF080),        one(0xF1BF),        "IdBW", mfloat },
  788. {"fbge",    one(0xF093),        one(0xF1BF),        "IdBW", mfloat },
  789. {"fbgl",    one(0xF096),        one(0xF1BF),        "IdBW", mfloat },
  790. {"fbgle",    one(0xF097),        one(0xF1BF),        "IdBW", mfloat },
  791. {"fbgt",    one(0xF092),        one(0xF1BF),        "IdBW", mfloat },
  792. {"fble",    one(0xF095),        one(0xF1BF),        "IdBW", mfloat },
  793. {"fblt",    one(0xF094),        one(0xF1BF),        "IdBW", mfloat },
  794. {"fbne",    one(0xF08E),        one(0xF1BF),        "IdBW", mfloat },
  795. #ifndef MOTOROLA_SYNTAX_ONLY
  796. {"fbneq",    one(0xF08E),        one(0xF1BF),        "IdBW", mfloat },
  797. #endif
  798. {"fbnge",    one(0xF09C),        one(0xF1BF),        "IdBW", mfloat },
  799. {"fbngl",    one(0xF099),        one(0xF1BF),        "IdBW", mfloat },
  800. {"fbngle",    one(0xF098),        one(0xF1BF),        "IdBW", mfloat },
  801. {"fbngt",    one(0xF09D),        one(0xF1BF),        "IdBW", mfloat },
  802. {"fbnle",    one(0xF09A),        one(0xF1BF),        "IdBW", mfloat },
  803. {"fbnlt",    one(0xF09B),        one(0xF1BF),        "IdBW", mfloat },
  804. {"fboge",    one(0xF083),        one(0xF1BF),        "IdBW", mfloat },
  805. {"fbogl",    one(0xF086),        one(0xF1BF),        "IdBW", mfloat },
  806. {"fbogt",    one(0xF082),        one(0xF1BF),        "IdBW", mfloat },
  807. {"fbole",    one(0xF085),        one(0xF1BF),        "IdBW", mfloat },
  808. {"fbolt",    one(0xF084),        one(0xF1BF),        "IdBW", mfloat },
  809. {"fbor",    one(0xF087),        one(0xF1BF),        "IdBW", mfloat },
  810. {"fbseq",    one(0xF091),        one(0xF1BF),        "IdBW", mfloat },
  811. {"fbsf",    one(0xF090),        one(0xF1BF),        "IdBW", mfloat },
  812. {"fbsne",    one(0xF09E),        one(0xF1BF),        "IdBW", mfloat },
  813. #ifndef MOTOROLA_SYNTAX_ONLY
  814. {"fbsneq",    one(0xF09E),        one(0xF1BF),        "IdBW", mfloat },
  815. #endif
  816. {"fbst",    one(0xF09F),        one(0xF1BF),        "IdBW", mfloat },
  817. {"fbt",        one(0xF08F),        one(0xF1BF),        "IdBW", mfloat },
  818. {"fbueq",    one(0xF089),        one(0xF1BF),        "IdBW", mfloat },
  819. {"fbuge",    one(0xF08B),        one(0xF1BF),        "IdBW", mfloat },
  820. {"fbugt",    one(0xF08A),        one(0xF1BF),        "IdBW", mfloat },
  821. {"fbule",    one(0xF08D),        one(0xF1BF),        "IdBW", mfloat },
  822. {"fbult",    one(0xF08C),        one(0xF1BF),        "IdBW", mfloat },
  823. {"fbun",    one(0xF088),        one(0xF1BF),        "IdBW", mfloat },
  824.  
  825. /* Float branches -- long (32-bit) displacements */
  826.  
  827. {"fbeql",    one(0xF081),        one(0xF1BF),        "IdBC", mfloat },
  828. {"fbfl",    one(0xF080),        one(0xF1BF),        "IdBC", mfloat },
  829. {"fbgel",    one(0xF093),        one(0xF1BF),        "IdBC", mfloat },
  830. {"fbgll",    one(0xF096),        one(0xF1BF),        "IdBC", mfloat },
  831. {"fbglel",    one(0xF097),        one(0xF1BF),        "IdBC", mfloat },
  832. {"fbgtl",    one(0xF092),        one(0xF1BF),        "IdBC", mfloat },
  833. {"fblel",    one(0xF095),        one(0xF1BF),        "IdBC", mfloat },
  834. {"fbltl",    one(0xF094),        one(0xF1BF),        "IdBC", mfloat },
  835. {"fbnel",    one(0xF08E),        one(0xF1BF),        "IdBC", mfloat },
  836. {"fbngel",    one(0xF09C),        one(0xF1BF),        "IdBC", mfloat },
  837. {"fbngll",    one(0xF099),        one(0xF1BF),        "IdBC", mfloat },
  838. {"fbnglel",    one(0xF098),        one(0xF1BF),        "IdBC", mfloat },
  839. {"fbngtl",    one(0xF09D),        one(0xF1BF),        "IdBC", mfloat },
  840. {"fbnlel",    one(0xF09A),        one(0xF1BF),        "IdBC", mfloat },
  841. {"fbnltl",    one(0xF09B),        one(0xF1BF),        "IdBC", mfloat },
  842. {"fbogel",    one(0xF083),        one(0xF1BF),        "IdBC", mfloat },
  843. {"fbogll",    one(0xF086),        one(0xF1BF),        "IdBC", mfloat },
  844. {"fbogtl",    one(0xF082),        one(0xF1BF),        "IdBC", mfloat },
  845. {"fbolel",    one(0xF085),        one(0xF1BF),        "IdBC", mfloat },
  846. {"fboltl",    one(0xF084),        one(0xF1BF),        "IdBC", mfloat },
  847. {"fborl",    one(0xF087),        one(0xF1BF),        "IdBC", mfloat },
  848. {"fbseql",    one(0xF091),        one(0xF1BF),        "IdBC", mfloat },
  849. {"fbsfl",    one(0xF090),        one(0xF1BF),        "IdBC", mfloat },
  850. {"fbsnel",    one(0xF09E),        one(0xF1BF),        "IdBC", mfloat },
  851. {"fbstl",    one(0xF09F),        one(0xF1BF),        "IdBC", mfloat },
  852. {"fbtl",    one(0xF08F),        one(0xF1BF),        "IdBC", mfloat },
  853. {"fbueql",    one(0xF089),        one(0xF1BF),        "IdBC", mfloat },
  854. {"fbugel",    one(0xF08B),        one(0xF1BF),        "IdBC", mfloat },
  855. {"fbugtl",    one(0xF08A),        one(0xF1BF),        "IdBC", mfloat },
  856. {"fbulel",    one(0xF08D),        one(0xF1BF),        "IdBC", mfloat },
  857. {"fbultl",    one(0xF08C),        one(0xF1BF),        "IdBC", mfloat },
  858. {"fbunl",    one(0xF088),        one(0xF1BF),        "IdBC", mfloat },
  859.  
  860. {"fcmpb",    two(0xF000, 0x5838),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  861. {"fcmpd",    two(0xF000, 0x5438),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  862. {"fcmpl",    two(0xF000, 0x4038),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  863. {"fcmpp",    two(0xF000, 0x4C38),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  864. {"fcmps",    two(0xF000, 0x4438),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  865. {"fcmpw",    two(0xF000, 0x5038),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  866. {"fcmpx",    two(0xF000, 0x0038),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  867. {"fcmpx",    two(0xF000, 0x4838),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  868. /* {"fcmpx",    two(0xF000, 0x0038),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat }, JF removed */
  869.  
  870. {"fcosb",    two(0xF000, 0x581D),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  871. {"fcosd",    two(0xF000, 0x541D),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  872. {"fcosl",    two(0xF000, 0x401D),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  873. {"fcosp",    two(0xF000, 0x4C1D),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  874. {"fcoss",    two(0xF000, 0x441D),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  875. {"fcosw",    two(0xF000, 0x501D),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  876. {"fcosx",    two(0xF000, 0x001D),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  877. {"fcosx",    two(0xF000, 0x481D),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  878. {"fcosx",    two(0xF000, 0x001D),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  879.  
  880. {"fcoshb",    two(0xF000, 0x5819),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  881. {"fcoshd",    two(0xF000, 0x5419),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  882. {"fcoshl",    two(0xF000, 0x4019),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  883. {"fcoshp",    two(0xF000, 0x4C19),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  884. {"fcoshs",    two(0xF000, 0x4419),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  885. {"fcoshw",    two(0xF000, 0x5019),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  886. {"fcoshx",    two(0xF000, 0x0019),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  887. {"fcoshx",    two(0xF000, 0x4819),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  888. {"fcoshx",    two(0xF000, 0x0019),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  889.  
  890. {"fdbeq",    two(0xF048, 0x0001),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  891. {"fdbf",    two(0xF048, 0x0000),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  892. {"fdbge",    two(0xF048, 0x0013),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  893. {"fdbgl",    two(0xF048, 0x0016),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  894. {"fdbgle",    two(0xF048, 0x0017),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  895. {"fdbgt",    two(0xF048, 0x0012),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  896. {"fdble",    two(0xF048, 0x0015),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  897. {"fdblt",    two(0xF048, 0x0014),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  898. {"fdbne",    two(0xF048, 0x000E),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  899. #ifndef MOTOROLA_SYNTAX_ONLY
  900. {"fdbneq",    two(0xF048, 0x000E),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  901. #endif
  902. {"fdbnge",    two(0xF048, 0x001C),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  903. {"fdbngl",    two(0xF048, 0x0019),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  904. {"fdbngle",    two(0xF048, 0x0018),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  905. {"fdbngt",    two(0xF048, 0x001D),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  906. {"fdbnle",    two(0xF048, 0x001A),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  907. {"fdbnlt",    two(0xF048, 0x001B),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  908. {"fdboge",    two(0xF048, 0x0003),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  909. {"fdbogl",    two(0xF048, 0x0006),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  910. {"fdbogt",    two(0xF048, 0x0002),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  911. {"fdbole",    two(0xF048, 0x0005),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  912. {"fdbolt",    two(0xF048, 0x0004),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  913. {"fdbor",    two(0xF048, 0x0007),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  914. {"fdbseq",    two(0xF048, 0x0011),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  915. {"fdbsf",    two(0xF048, 0x0010),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  916. {"fdbsne",    two(0xF048, 0x001E),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  917. #ifndef MOTOROLA_SYNTAX_ONLY
  918. {"fdbsneq",    two(0xF048, 0x001E),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  919. #endif
  920. {"fdbst",    two(0xF048, 0x001F),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  921. {"fdbt",    two(0xF048, 0x000F),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  922. {"fdbueq",    two(0xF048, 0x0009),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  923. {"fdbuge",    two(0xF048, 0x000B),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  924. {"fdbugt",    two(0xF048, 0x000A),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  925. {"fdbule",    two(0xF048, 0x000D),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  926. {"fdbult",    two(0xF048, 0x000C),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  927. {"fdbun",    two(0xF048, 0x0008),    two(0xF1F8, 0xFFFF),    "IiDsBw", mfloat },
  928.  
  929. {"fdivb",    two(0xF000, 0x5820),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  930. {"fdivd",    two(0xF000, 0x5420),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  931. {"fdivl",    two(0xF000, 0x4020),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  932. {"fdivp",    two(0xF000, 0x4C20),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  933. {"fdivs",    two(0xF000, 0x4420),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  934. {"fdivw",    two(0xF000, 0x5020),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  935. {"fdivx",    two(0xF000, 0x0020),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  936. {"fdivx",    two(0xF000, 0x4820),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  937. /* {"fdivx",    two(0xF000, 0x0020),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat }, JF */
  938.  
  939. {"fsdivb",    two(0xF000, 0x5860),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  940. {"fsdivd",    two(0xF000, 0x5460),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  941. {"fsdivl",    two(0xF000, 0x4060),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  942. {"fsdivp",    two(0xF000, 0x4C60),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  943. {"fsdivs",    two(0xF000, 0x4460),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  944. {"fsdivw",    two(0xF000, 0x5060),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  945. {"fsdivx",    two(0xF000, 0x0060),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  946. {"fsdivx",    two(0xF000, 0x4860),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  947. /* {"fsdivx",    two(0xF000, 0x0060),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 }, JF */
  948.  
  949. {"fddivb",    two(0xF000, 0x5864),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  950. {"fddivd",    two(0xF000, 0x5464),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  951. {"fddivl",    two(0xF000, 0x4064),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  952. {"fddivp",    two(0xF000, 0x4C64),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  953. {"fddivs",    two(0xF000, 0x4464),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  954. {"fddivw",    two(0xF000, 0x5064),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  955. {"fddivx",    two(0xF000, 0x0064),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  956. {"fddivx",    two(0xF000, 0x4864),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  957. /* {"fddivx",    two(0xF000, 0x0064),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 }, JF */
  958.  
  959. {"fetoxb",    two(0xF000, 0x5810),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  960. {"fetoxd",    two(0xF000, 0x5410),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  961. {"fetoxl",    two(0xF000, 0x4010),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  962. {"fetoxp",    two(0xF000, 0x4C10),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  963. {"fetoxs",    two(0xF000, 0x4410),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  964. {"fetoxw",    two(0xF000, 0x5010),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  965. {"fetoxx",    two(0xF000, 0x0010),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  966. {"fetoxx",    two(0xF000, 0x4810),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  967. {"fetoxx",    two(0xF000, 0x0010),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  968.  
  969. {"fetoxm1b",    two(0xF000, 0x5808),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  970. {"fetoxm1d",    two(0xF000, 0x5408),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  971. {"fetoxm1l",    two(0xF000, 0x4008),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  972. {"fetoxm1p",    two(0xF000, 0x4C08),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  973. {"fetoxm1s",    two(0xF000, 0x4408),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  974. {"fetoxm1w",    two(0xF000, 0x5008),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  975. {"fetoxm1x",    two(0xF000, 0x0008),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  976. {"fetoxm1x",    two(0xF000, 0x4808),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  977. {"fetoxm1x",    two(0xF000, 0x0008),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  978.  
  979. {"fgetexpb",    two(0xF000, 0x581E),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  980. {"fgetexpd",    two(0xF000, 0x541E),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  981. {"fgetexpl",    two(0xF000, 0x401E),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  982. {"fgetexpp",    two(0xF000, 0x4C1E),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  983. {"fgetexps",    two(0xF000, 0x441E),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  984. {"fgetexpw",    two(0xF000, 0x501E),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  985. {"fgetexpx",    two(0xF000, 0x001E),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  986. {"fgetexpx",    two(0xF000, 0x481E),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  987. {"fgetexpx",    two(0xF000, 0x001E),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  988.  
  989. {"fgetmanb",    two(0xF000, 0x581F),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  990. {"fgetmand",    two(0xF000, 0x541F),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  991. {"fgetmanl",    two(0xF000, 0x401F),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  992. {"fgetmanp",    two(0xF000, 0x4C1F),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  993. {"fgetmans",    two(0xF000, 0x441F),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  994. {"fgetmanw",    two(0xF000, 0x501F),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  995. {"fgetmanx",    two(0xF000, 0x001F),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  996. {"fgetmanx",    two(0xF000, 0x481F),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  997. {"fgetmanx",    two(0xF000, 0x001F),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  998.  
  999. {"fintb",    two(0xF000, 0x5801),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1000. {"fintd",    two(0xF000, 0x5401),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1001. {"fintl",    two(0xF000, 0x4001),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1002. {"fintp",    two(0xF000, 0x4C01),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1003. {"fints",    two(0xF000, 0x4401),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1004. {"fintw",    two(0xF000, 0x5001),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1005. {"fintx",    two(0xF000, 0x0001),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1006. {"fintx",    two(0xF000, 0x4801),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1007. {"fintx",    two(0xF000, 0x0001),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1008.  
  1009. {"fintrzb",    two(0xF000, 0x5803),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1010. {"fintrzd",    two(0xF000, 0x5403),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1011. {"fintrzl",    two(0xF000, 0x4003),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1012. {"fintrzp",    two(0xF000, 0x4C03),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1013. {"fintrzs",    two(0xF000, 0x4403),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1014. {"fintrzw",    two(0xF000, 0x5003),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1015. {"fintrzx",    two(0xF000, 0x0003),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1016. {"fintrzx",    two(0xF000, 0x4803),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1017. {"fintrzx",    two(0xF000, 0x0003),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1018.  
  1019. {"flog10b",    two(0xF000, 0x5815),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1020. {"flog10d",    two(0xF000, 0x5415),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1021. {"flog10l",    two(0xF000, 0x4015),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1022. {"flog10p",    two(0xF000, 0x4C15),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1023. {"flog10s",    two(0xF000, 0x4415),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1024. {"flog10w",    two(0xF000, 0x5015),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1025. {"flog10x",    two(0xF000, 0x0015),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1026. {"flog10x",    two(0xF000, 0x4815),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1027. {"flog10x",    two(0xF000, 0x0015),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1028.  
  1029. {"flog2b",    two(0xF000, 0x5816),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1030. {"flog2d",    two(0xF000, 0x5416),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1031. {"flog2l",    two(0xF000, 0x4016),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1032. {"flog2p",    two(0xF000, 0x4C16),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1033. {"flog2s",    two(0xF000, 0x4416),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1034. {"flog2w",    two(0xF000, 0x5016),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1035. {"flog2x",    two(0xF000, 0x0016),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1036. {"flog2x",    two(0xF000, 0x4816),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1037. {"flog2x",    two(0xF000, 0x0016),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1038.  
  1039. {"flognb",    two(0xF000, 0x5814),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1040. {"flognd",    two(0xF000, 0x5414),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1041. {"flognl",    two(0xF000, 0x4014),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1042. {"flognp",    two(0xF000, 0x4C14),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1043. {"flogns",    two(0xF000, 0x4414),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1044. {"flognw",    two(0xF000, 0x5014),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1045. {"flognx",    two(0xF000, 0x0014),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1046. {"flognx",    two(0xF000, 0x4814),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1047. {"flognx",    two(0xF000, 0x0014),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1048.  
  1049. {"flognp1b",    two(0xF000, 0x5806),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1050. {"flognp1d",    two(0xF000, 0x5406),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1051. {"flognp1l",    two(0xF000, 0x4006),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1052. {"flognp1p",    two(0xF000, 0x4C06),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1053. {"flognp1s",    two(0xF000, 0x4406),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1054. {"flognp1w",    two(0xF000, 0x5006),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1055. {"flognp1x",    two(0xF000, 0x0006),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1056. {"flognp1x",    two(0xF000, 0x4806),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1057. {"flognp1x",    two(0xF000, 0x0006),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1058.  
  1059. {"fmodb",    two(0xF000, 0x5821),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1060. {"fmodd",    two(0xF000, 0x5421),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1061. {"fmodl",    two(0xF000, 0x4021),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1062. {"fmodp",    two(0xF000, 0x4C21),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1063. {"fmods",    two(0xF000, 0x4421),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1064. {"fmodw",    two(0xF000, 0x5021),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1065. {"fmodx",    two(0xF000, 0x0021),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1066. {"fmodx",    two(0xF000, 0x4821),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1067. /* {"fmodx",    two(0xF000, 0x0021),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat }, JF */
  1068.  
  1069. {"fmoveb",    two(0xF000, 0x5800),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },        /* fmove from <ea> to fp<n> */
  1070. {"fmoveb",    two(0xF000, 0x7800),    two(0xF1C0, 0xFC7F),    "IiF7@b", mfloat },        /* fmove from fp<n> to <ea> */
  1071. {"fmoved",    two(0xF000, 0x5400),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },        /* fmove from <ea> to fp<n> */
  1072. {"fmoved",    two(0xF000, 0x7400),    two(0xF1C0, 0xFC7F),    "IiF7@F", mfloat },        /* fmove from fp<n> to <ea> */
  1073. {"fmovel",    two(0xF000, 0x4000),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },        /* fmove from <ea> to fp<n> */
  1074. {"fmovel",    two(0xF000, 0x6000),    two(0xF1C0, 0xFC7F),    "IiF7@l", mfloat },        /* fmove from fp<n> to <ea> */
  1075. /* Warning:  The addressing modes on these are probably not right:
  1076.    esp, Areg direct is only allowed for FPI */
  1077.         /* fmove.l from/to system control registers: */
  1078. {"fmovel",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s", mfloat },
  1079. {"fmovel",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ls8", mfloat },
  1080.  
  1081. /* {"fmovel",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s", mfloat },
  1082. {"fmovel",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*ss8", mfloat }, */
  1083.  
  1084. {"fmovep",    two(0xF000, 0x4C00),    two(0xF1C0, 0xFC7F),    "Ii;pF7",   mfloat },        /* fmove from <ea> to fp<n> */
  1085. {"fmovep",    two(0xF000, 0x6C00),    two(0xF1C0, 0xFC00),    "IiF7@pkC", mfloat },        /* fmove.p with k-factors: */
  1086. {"fmovep",    two(0xF000, 0x7C00),    two(0xF1C0, 0xFC0F),    "IiF7@pDk", mfloat },        /* fmove.p with k-factors: */
  1087.  
  1088. {"fmoves",    two(0xF000, 0x4400),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },        /* fmove from <ea> to fp<n> */
  1089. {"fmoves",    two(0xF000, 0x6400),    two(0xF1C0, 0xFC7F),    "IiF7@f", mfloat },        /* fmove from fp<n> to <ea> */
  1090. {"fmovew",    two(0xF000, 0x5000),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },        /* fmove from <ea> to fp<n> */
  1091. {"fmovew",    two(0xF000, 0x7000),    two(0xF1C0, 0xFC7F),    "IiF7@w", mfloat },        /* fmove from fp<n> to <ea> */
  1092.  
  1093. {"fmovex",    two(0xF000, 0x0000),    two(0xF1FF, 0xE07F),    "IiF8F7", mfloat },        /* fmove from fp<n> (<ea>) to fp<n> */
  1094. {"fmovex",    two(0xF000, 0x4800),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },        /* fmove from mem (<ea>) to fp<n> */
  1095. {"fmovex",    two(0xF000, 0x6800),    two(0xF1C0, 0xFC7F),    "IiF7@x", mfloat },        /* fmove from fp<n> to <ea> */
  1096. /* JF removed {"fmovex",    two(0xF000, 0x0000),    two(0xF1C0, 0xE07F),    "IiFt", mfloat }, / * fmove from <ea> to fp<n> */
  1097.  
  1098. {"fsmoveb",    two(0xF000, 0x5840),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 }, /* fmove from <ea> to fp<n> */
  1099. {"fsmoved",    two(0xF000, 0x5440),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 }, /* fmove from <ea> to fp<n> */
  1100. {"fsmovel",    two(0xF000, 0x4040),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 }, /* fmove from <ea> to fp<n> */
  1101. {"fsmoves",    two(0xF000, 0x4440),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 }, /* fmove from <ea> to fp<n> */
  1102. {"fsmovew",    two(0xF000, 0x5040),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 }, /* fmove from <ea> to fp<n> */
  1103. {"fsmovex",    two(0xF000, 0x0040),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 }, /* fmove from <ea> to fp<n> */
  1104. {"fsmovex",    two(0xF000, 0x4840),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 }, /* fmove from <ea> to fp<n> */
  1105. {"fsmovep",    two(0xF000, 0x4C40),    two(0xF1C0, 0xFC7F),    "Ii;pF7",   mfloat },        /* fmove from <ea> to fp<n> */
  1106. /* JF removed {"fsmovex",    two(0xF000, 0x0000),    two(0xF1C0, 0xE07F),    "IiFt", m68040 }, / * fmove from <ea> to fp<n> */
  1107.  
  1108. {"fdmoveb",    two(0xF000, 0x5844),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 }, /* fmove from <ea> to fp<n> */
  1109. {"fdmoved",    two(0xF000, 0x5444),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 }, /* fmove from <ea> to fp<n> */
  1110. {"fdmovel",    two(0xF000, 0x4044),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 }, /* fmove from <ea> to fp<n> */
  1111. {"fdmoves",    two(0xF000, 0x4444),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 }, /* fmove from <ea> to fp<n> */
  1112. {"fdmovew",    two(0xF000, 0x5044),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 }, /* fmove from <ea> to fp<n> */
  1113. {"fdmovex",    two(0xF000, 0x0044),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 }, /* fmove from <ea> to fp<n> */
  1114. {"fdmovex",    two(0xF000, 0x4844),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 }, /* fmove from <ea> to fp<n> */
  1115. {"fdmovep",    two(0xF000, 0x4C44),    two(0xF1C0, 0xFC7F),    "Ii;pF7",   mfloat },        /* fmove from <ea> to fp<n> */
  1116. /* JF removed {"fdmovex",    two(0xF000, 0x0000),    two(0xF1C0, 0xE07F),    "IiFt", m68040 }, / * fmove from <ea> to fp<n> */
  1117.  
  1118. {"fmovecrx",    two(0xF000, 0x5C00),    two(0xF1FF, 0xFC00),    "Ii#CF7", mfloat },        /* fmovecr.x #ccc, FPn */
  1119. {"fmovecr",    two(0xF000, 0x5C00),    two(0xF1FF, 0xFC00),    "Ii#CF7", mfloat },
  1120.  
  1121. /* Other fmovemx.  */
  1122. {"fmovemx", two(0xF000, 0xF800), two(0xF1C0, 0xFF8F), "IiDk&s", mfloat }, /* reg to control,    static and dynamic: */
  1123. {"fmovemx", two(0xF000, 0xD800), two(0xF1C0, 0xFF8F), "Ii&sDk", mfloat }, /* from control to reg, static and dynamic: */
  1124.  
  1125. {"fmovemx", two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Idl3&s", mfloat }, /* to control, static and dynamic: */
  1126. {"fmovemx", two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Id#3&s", mfloat }, /* to control, static and dynamic: */
  1127.  
  1128. {"fmovemx", two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&sl3", mfloat }, /* from control, static and dynamic: */
  1129. {"fmovemx", two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&s#3", mfloat }, /* from control, static and dynamic: */
  1130.  
  1131. {"fmovemx", two(0xF020, 0xE800), two(0xF1F8, 0xFF8F), "IiDk-s", mfloat }, /* reg to autodecrement, static and dynamic */
  1132. {"fmovemx", two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "IdL3-s", mfloat }, /* to autodecrement, static and dynamic */
  1133. {"fmovemx", two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "Id#3-s", mfloat }, /* to autodecrement, static and dynamic */
  1134.  
  1135. {"fmovemx", two(0xF018, 0xD800), two(0xF1F8, 0xFF8F), "Ii+sDk", mfloat }, /* from autoinc to reg, static and dynamic: */
  1136. {"fmovemx", two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+sl3", mfloat }, /* from autoincrement, static and dynamic: */
  1137. {"fmovemx", two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+s#3", mfloat }, /* from autoincrement, static and dynamic: */
  1138.  
  1139. {"fmoveml",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "IiL8@s", mfloat },
  1140. {"fmoveml",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Ii#8@s", mfloat },
  1141. {"fmoveml",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s", mfloat },
  1142.  
  1143. {"fmoveml",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*sL8", mfloat },
  1144. {"fmoveml",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*s#8", mfloat },
  1145. {"fmoveml",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ss8", mfloat },
  1146.  
  1147. /* fmovemx with register lists */
  1148. {"fmovem",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "IdL3-s", mfloat }, /* to autodec, static & dynamic */
  1149. {"fmovem",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Idl3&s", mfloat }, /* to control, static and dynamic */
  1150. {"fmovem",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+sl3", mfloat }, /* from autoinc, static & dynamic */
  1151. {"fmovem",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&sl3", mfloat }, /* from control, static and dynamic */
  1152.  
  1153.     /* Alternate mnemonics for GNU as and GNU CC */
  1154. {"fmovem",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "Id#3-s", mfloat }, /* to autodecrement, static and dynamic */
  1155. {"fmovem",    two(0xF020, 0xE800),    two(0xF1F8, 0xFF8F),    "IiDk-s", mfloat }, /* to autodecrement, static and dynamic */
  1156.  
  1157. {"fmovem",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Id#3&s", mfloat }, /* to control, static and dynamic: */
  1158. {"fmovem",    two(0xF000, 0xF800),    two(0xF1C0, 0xFF8F),    "IiDk&s", mfloat }, /* to control, static and dynamic: */
  1159.  
  1160. {"fmovem",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+s#3", mfloat }, /* from autoincrement, static and dynamic: */
  1161. {"fmovem",    two(0xF018, 0xD800),    two(0xF1F8, 0xFF8F),    "Ii+sDk", mfloat }, /* from autoincrement, static and dynamic: */
  1162.   
  1163. {"fmovem",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&s#3", mfloat }, /* from control, static and dynamic: */
  1164. {"fmovem",    two(0xF000, 0xD800),    two(0xF1C0, 0xFF8F),    "Ii&sDk", mfloat }, /* from control, static and dynamic: */
  1165.  
  1166. /* fmoveml a FP-control register */
  1167. {"fmovem",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s", mfloat },
  1168. {"fmovem",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ss8", mfloat },
  1169.  
  1170. /* fmoveml a FP-control reglist */
  1171. {"fmovem",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "IiL8@s", mfloat },
  1172. {"fmovem",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*sL8", mfloat },
  1173.  
  1174. #ifndef MIT_SYNTAX_ONLY
  1175. {"fmovm",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "IdL3-s", mfloat }, /* to autodec, static & dynamic */
  1176. {"fmovm",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Idl3&s", mfloat }, /* to control, static and dynamic */
  1177. {"fmovm",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+sl3", mfloat }, /* from autoinc, static & dynamic */
  1178. {"fmovm",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&sl3", mfloat }, /* from control, static and dynamic */
  1179.  
  1180.     /* Alternate mnemonics for GNU as and GNU CC */
  1181. {"fmovm",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "Id#3-s", mfloat }, /* to autodecrement, static and dynamic */
  1182. {"fmovm",    two(0xF020, 0xE800),    two(0xF1F8, 0xFF8F),    "IiDk-s", mfloat }, /* to autodecrement, static and dynamic */
  1183.  
  1184. {"fmovm",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Id#3&s", mfloat }, /* to control, static and dynamic: */
  1185. {"fmovm",    two(0xF000, 0xF800),    two(0xF1C0, 0xFF8F),    "IiDk&s", mfloat }, /* to control, static and dynamic: */
  1186.  
  1187. {"fmovm",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+s#3", mfloat }, /* from autoincrement, static and dynamic: */
  1188. {"fmovm",    two(0xF018, 0xD800),    two(0xF1F8, 0xFF8F),    "Ii+sDk", mfloat }, /* from autoincrement, static and dynamic: */
  1189.   
  1190. {"fmovm",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&s#3", mfloat }, /* from control, static and dynamic: */
  1191. {"fmovm",    two(0xF000, 0xD800),    two(0xF1C0, 0xFF8F),    "Ii&sDk", mfloat }, /* from control, static and dynamic: */
  1192.  
  1193. /* fmoveml a FP-control register */
  1194. {"fmovm",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s", mfloat },
  1195. {"fmovm",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ss8", mfloat },
  1196.  
  1197. /* fmoveml a FP-control reglist */
  1198. {"fmovm",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "IiL8@s", mfloat },
  1199. {"fmovm",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*sL8", mfloat },
  1200. #endif
  1201.  
  1202. {"fmulb",    two(0xF000, 0x5823),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1203. {"fmuld",    two(0xF000, 0x5423),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1204. {"fmull",    two(0xF000, 0x4023),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1205. {"fmulp",    two(0xF000, 0x4C23),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1206. {"fmuls",    two(0xF000, 0x4423),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1207. {"fmulw",    two(0xF000, 0x5023),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1208. {"fmulx",    two(0xF000, 0x0023),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1209. {"fmulx",    two(0xF000, 0x4823),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1210. /* {"fmulx",    two(0xF000, 0x0023),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat }, JF */
  1211.  
  1212. {"fsmulb",    two(0xF000, 0x5863),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  1213. {"fsmuld",    two(0xF000, 0x5463),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  1214. {"fsmull",    two(0xF000, 0x4063),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  1215. {"fsmulp",    two(0xF000, 0x4C63),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  1216. {"fsmuls",    two(0xF000, 0x4463),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  1217. {"fsmulw",    two(0xF000, 0x5063),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  1218. {"fsmulx",    two(0xF000, 0x0063),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  1219. {"fsmulx",    two(0xF000, 0x4863),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  1220. /* {"fsmulx",    two(0xF000, 0x0033),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 }, JF */
  1221.  
  1222. {"fdmulb",    two(0xF000, 0x5867),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  1223. {"fdmuld",    two(0xF000, 0x5467),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  1224. {"fdmull",    two(0xF000, 0x4067),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  1225. {"fdmulp",    two(0xF000, 0x4C67),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  1226. {"fdmuls",    two(0xF000, 0x4467),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  1227. {"fdmulw",    two(0xF000, 0x5067),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  1228. {"fdmulx",    two(0xF000, 0x0067),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  1229. {"fdmulx",    two(0xF000, 0x4867),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  1230. /* {"dfmulx",    two(0xF000, 0x0067),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 }, JF */
  1231.  
  1232. {"fnegb",    two(0xF000, 0x581A),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1233. {"fnegd",    two(0xF000, 0x541A),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1234. {"fnegl",    two(0xF000, 0x401A),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1235. {"fnegp",    two(0xF000, 0x4C1A),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1236. {"fnegs",    two(0xF000, 0x441A),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1237. {"fnegw",    two(0xF000, 0x501A),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1238. {"fnegx",    two(0xF000, 0x001A),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1239. {"fnegx",    two(0xF000, 0x481A),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1240. {"fnegx",    two(0xF000, 0x001A),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1241.  
  1242. {"fsnegb",    two(0xF000, 0x585A),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  1243. {"fsnegd",    two(0xF000, 0x545A),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  1244. {"fsnegl",    two(0xF000, 0x405A),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  1245. {"fsnegp",    two(0xF000, 0x4C5A),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  1246. {"fsnegs",    two(0xF000, 0x445A),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  1247. {"fsnegw",    two(0xF000, 0x505A),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  1248. {"fsnegx",    two(0xF000, 0x005A),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  1249. {"fsnegx",    two(0xF000, 0x485A),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  1250. {"fsnegx",    two(0xF000, 0x005A),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 },
  1251.  
  1252. {"fdnegb",    two(0xF000, 0x585E),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  1253. {"fdnegd",    two(0xF000, 0x545E),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  1254. {"fdnegl",    two(0xF000, 0x405E),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  1255. {"fdnegp",    two(0xF000, 0x4C5E),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  1256. {"fdnegs",    two(0xF000, 0x445E),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  1257. {"fdnegw",    two(0xF000, 0x505E),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  1258. {"fdnegx",    two(0xF000, 0x005E),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  1259. {"fdnegx",    two(0xF000, 0x485E),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  1260. {"fdnegx",    two(0xF000, 0x005E),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 },
  1261.  
  1262. {"fnop",    two(0xF280, 0x0000),    two(0xFFFF, 0xFFFF),    "Ii", mfloat },
  1263.  
  1264. {"fremb",    two(0xF000, 0x5825),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1265. {"fremd",    two(0xF000, 0x5425),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1266. {"freml",    two(0xF000, 0x4025),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1267. {"fremp",    two(0xF000, 0x4C25),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1268. {"frems",    two(0xF000, 0x4425),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1269. {"fremw",    two(0xF000, 0x5025),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1270. {"fremx",    two(0xF000, 0x0025),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1271. {"fremx",    two(0xF000, 0x4825),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1272. /* {"fremx",    two(0xF000, 0x0025),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat }, JF */
  1273.  
  1274. {"frestore",    one(0xF140),        one(0xF1C0),        "Id&s", mfloat },
  1275. {"frestore",    one(0xF158),        one(0xF1F8),        "Id+s", mfloat },
  1276. {"fsave",    one(0xF100),        one(0xF1C0),        "Id&s", mfloat },
  1277. {"fsave",    one(0xF120),        one(0xF1F8),        "Id-s", mfloat },
  1278.  
  1279. {"fscaleb",    two(0xF000, 0x5826),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1280. {"fscaled",    two(0xF000, 0x5426),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1281. {"fscalel",    two(0xF000, 0x4026),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1282. {"fscalep",    two(0xF000, 0x4C26),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1283. {"fscales",    two(0xF000, 0x4426),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1284. {"fscalew",    two(0xF000, 0x5026),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1285. {"fscalex",    two(0xF000, 0x0026),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1286. {"fscalex",    two(0xF000, 0x4826),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1287. /* {"fscalex",    two(0xF000, 0x0026),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat }, JF */
  1288.  
  1289. /* $ is necessary to prevent the assembler from using PC-relative.
  1290.    If @ were used, "label: fseq label" could produce "ftrapeq",
  1291.    because "label" became "pc@label".  */
  1292. {"fseq",    two(0xF040, 0x0001),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1293. {"fsf",        two(0xF040, 0x0000),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1294. {"fsge",    two(0xF040, 0x0013),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1295. {"fsgl",    two(0xF040, 0x0016),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1296. {"fsgle",    two(0xF040, 0x0017),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1297. {"fsgt",    two(0xF040, 0x0012),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1298. {"fsle",    two(0xF040, 0x0015),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1299. {"fslt",    two(0xF040, 0x0014),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1300. {"fsne",    two(0xF040, 0x000E),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1301. #ifndef MOTOROLA_SYNTAX_ONLY
  1302. {"fsneq",    two(0xF040, 0x000E),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1303. #endif
  1304. {"fsnge",    two(0xF040, 0x001C),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1305. {"fsngl",    two(0xF040, 0x0019),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1306. {"fsngle",    two(0xF040, 0x0018),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1307. {"fsngt",    two(0xF040, 0x001D),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1308. {"fsnle",    two(0xF040, 0x001A),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1309. {"fsnlt",    two(0xF040, 0x001B),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1310. {"fsoge",    two(0xF040, 0x0003),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1311. {"fsogl",    two(0xF040, 0x0006),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1312. {"fsogt",    two(0xF040, 0x0002),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1313. {"fsole",    two(0xF040, 0x0005),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1314. {"fsolt",    two(0xF040, 0x0004),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1315. {"fsor",    two(0xF040, 0x0007),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1316. {"fsseq",    two(0xF040, 0x0011),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1317. {"fssf",    two(0xF040, 0x0010),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1318. {"fssne",    two(0xF040, 0x001E),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1319. #ifndef MOTOROLA_SYNTAX_ONLY
  1320. {"fssneq",    two(0xF040, 0x001E),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1321. #endif
  1322. {"fsst",    two(0xF040, 0x001F),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1323. {"fst",        two(0xF040, 0x000F),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1324. {"fsueq",    two(0xF040, 0x0009),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1325. {"fsuge",    two(0xF040, 0x000B),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1326. {"fsugt",    two(0xF040, 0x000A),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1327. {"fsule",    two(0xF040, 0x000D),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1328. {"fsult",    two(0xF040, 0x000C),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1329. {"fsun",    two(0xF040, 0x0008),    two(0xF1C0, 0xFFFF),    "Ii$s", mfloat },
  1330.  
  1331. {"fsgldivb",    two(0xF000, 0x5824),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1332. {"fsgldivd",    two(0xF000, 0x5424),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1333. {"fsgldivl",    two(0xF000, 0x4024),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1334. {"fsgldivp",    two(0xF000, 0x4C24),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1335. {"fsgldivs",    two(0xF000, 0x4424),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1336. {"fsgldivw",    two(0xF000, 0x5024),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1337. {"fsgldivx",    two(0xF000, 0x0024),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1338. {"fsgldivx",    two(0xF000, 0x4824),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1339. {"fsgldivx",    two(0xF000, 0x0024),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1340.  
  1341. {"fsglmulb",    two(0xF000, 0x5827),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1342. {"fsglmuld",    two(0xF000, 0x5427),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1343. {"fsglmull",    two(0xF000, 0x4027),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1344. {"fsglmulp",    two(0xF000, 0x4C27),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1345. {"fsglmuls",    two(0xF000, 0x4427),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1346. {"fsglmulw",    two(0xF000, 0x5027),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1347. {"fsglmulx",    two(0xF000, 0x0027),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1348. {"fsglmulx",    two(0xF000, 0x4827),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1349. {"fsglmulx",    two(0xF000, 0x0027),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1350.  
  1351. {"fsinb",    two(0xF000, 0x580E),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1352. {"fsind",    two(0xF000, 0x540E),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1353. {"fsinl",    two(0xF000, 0x400E),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1354. {"fsinp",    two(0xF000, 0x4C0E),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1355. {"fsins",    two(0xF000, 0x440E),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1356. {"fsinw",    two(0xF000, 0x500E),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1357. {"fsinx",    two(0xF000, 0x000E),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1358. {"fsinx",    two(0xF000, 0x480E),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1359. {"fsinx",    two(0xF000, 0x000E),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1360.  
  1361. {"fsinhb",    two(0xF000, 0x5802),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1362. {"fsinhd",    two(0xF000, 0x5402),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1363. {"fsinhl",    two(0xF000, 0x4002),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1364. {"fsinhp",    two(0xF000, 0x4C02),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1365. {"fsinhs",    two(0xF000, 0x4402),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1366. {"fsinhw",    two(0xF000, 0x5002),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1367. {"fsinhx",    two(0xF000, 0x0002),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1368. {"fsinhx",    two(0xF000, 0x4802),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1369. {"fsinhx",    two(0xF000, 0x0002),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1370.  
  1371. {"fsincosb",    two(0xF000, 0x5830),    two(0xF1C0, 0xFC78),    "Ii;bF3F7", mfloat },
  1372. {"fsincosd",    two(0xF000, 0x5430),    two(0xF1C0, 0xFC78),    "Ii;FF3F7", mfloat },
  1373. {"fsincosl",    two(0xF000, 0x4030),    two(0xF1C0, 0xFC78),    "Ii;lF3F7", mfloat },
  1374.  
  1375. /* GCC has trouble initializing such a large structure -- it's exponential or
  1376.    something in the size.  So break it in half.  */
  1377. BREAK_UP_BIG_DECL
  1378.  
  1379. {"fsincosp",    two(0xF000, 0x4C30),    two(0xF1C0, 0xFC78),    "Ii;pF3F7", mfloat },
  1380. {"fsincoss",    two(0xF000, 0x4430),    two(0xF1C0, 0xFC78),    "Ii;fF3F7", mfloat },
  1381. {"fsincosw",    two(0xF000, 0x5030),    two(0xF1C0, 0xFC78),    "Ii;wF3F7", mfloat },
  1382. {"fsincosx",    two(0xF000, 0x0030),    two(0xF1C0, 0xE078),    "IiF8F3F7", mfloat },
  1383. {"fsincosx",    two(0xF000, 0x4830),    two(0xF1C0, 0xFC78),    "Ii;xF3F7", mfloat },
  1384.  
  1385. {"fsqrtb",    two(0xF000, 0x5804),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1386. {"fsqrtd",    two(0xF000, 0x5404),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1387. {"fsqrtl",    two(0xF000, 0x4004),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1388. {"fsqrtp",    two(0xF000, 0x4C04),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1389. {"fsqrts",    two(0xF000, 0x4404),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1390. {"fsqrtw",    two(0xF000, 0x5004),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1391. {"fsqrtx",    two(0xF000, 0x0004),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1392. {"fsqrtx",    two(0xF000, 0x4804),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1393. {"fsqrtx",    two(0xF000, 0x0004),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1394.  
  1395. {"fssqrtb",    two(0xF000, 0x5841),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  1396. {"fssqrtd",    two(0xF000, 0x5441),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  1397. {"fssqrtl",    two(0xF000, 0x4041),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  1398. {"fssqrtp",    two(0xF000, 0x4C41),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  1399. {"fssqrts",    two(0xF000, 0x4441),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  1400. {"fssqrtw",    two(0xF000, 0x5041),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  1401. {"fssqrtx",    two(0xF000, 0x0041),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  1402. {"fssqrtx",    two(0xF000, 0x4841),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  1403. {"fssqrtx",    two(0xF000, 0x0041),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 },
  1404.  
  1405. {"fdsqrtb",    two(0xF000, 0x5845),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  1406. {"fdsqrtd",    two(0xF000, 0x5445),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  1407. {"fdsqrtl",    two(0xF000, 0x4045),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  1408. {"fdsqrtp",    two(0xF000, 0x4C45),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  1409. {"fdsqrts",    two(0xF000, 0x4445),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  1410. {"fdsqrtw",    two(0xF000, 0x5045),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  1411. {"fdsqrtx",    two(0xF000, 0x0045),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  1412. {"fdsqrtx",    two(0xF000, 0x4845),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  1413. {"fdsqrtx",    two(0xF000, 0x0045),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 },
  1414.  
  1415. {"fsubb",    two(0xF000, 0x5828),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1416. {"fsubd",    two(0xF000, 0x5428),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1417. {"fsubl",    two(0xF000, 0x4028),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1418. {"fsubp",    two(0xF000, 0x4C28),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1419. {"fsubs",    two(0xF000, 0x4428),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1420. {"fsubw",    two(0xF000, 0x5028),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1421. {"fsubx",    two(0xF000, 0x0028),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1422. {"fsubx",    two(0xF000, 0x4828),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1423. {"fsubx",    two(0xF000, 0x0028),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1424.  
  1425. {"fssubb",    two(0xF000, 0x5868),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  1426. {"fssubd",    two(0xF000, 0x5468),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  1427. {"fssubl",    two(0xF000, 0x4068),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  1428. {"fssubp",    two(0xF000, 0x4C68),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  1429. {"fssubs",    two(0xF000, 0x4468),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  1430. {"fssubw",    two(0xF000, 0x5068),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  1431. {"fssubx",    two(0xF000, 0x0068),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  1432. {"fssubx",    two(0xF000, 0x4868),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  1433. {"fssubx",    two(0xF000, 0x0068),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 },
  1434.  
  1435. {"fdsubb",    two(0xF000, 0x586c),    two(0xF1C0, 0xFC7F),    "Ii;bF7", m68040 },
  1436. {"fdsubd",    two(0xF000, 0x546c),    two(0xF1C0, 0xFC7F),    "Ii;FF7", m68040 },
  1437. {"fdsubl",    two(0xF000, 0x406c),    two(0xF1C0, 0xFC7F),    "Ii;lF7", m68040 },
  1438. {"fdsubp",    two(0xF000, 0x4C6c),    two(0xF1C0, 0xFC7F),    "Ii;pF7", m68040 },
  1439. {"fdsubs",    two(0xF000, 0x446c),    two(0xF1C0, 0xFC7F),    "Ii;fF7", m68040 },
  1440. {"fdsubw",    two(0xF000, 0x506c),    two(0xF1C0, 0xFC7F),    "Ii;wF7", m68040 },
  1441. {"fdsubx",    two(0xF000, 0x006c),    two(0xF1C0, 0xE07F),    "IiF8F7", m68040 },
  1442. {"fdsubx",    two(0xF000, 0x486c),    two(0xF1C0, 0xFC7F),    "Ii;xF7", m68040 },
  1443. {"fdsubx",    two(0xF000, 0x006c),    two(0xF1C0, 0xE07F),    "IiFt",   m68040 },
  1444.  
  1445. {"ftanb",    two(0xF000, 0x580F),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1446. {"ftand",    two(0xF000, 0x540F),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1447. {"ftanl",    two(0xF000, 0x400F),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1448. {"ftanp",    two(0xF000, 0x4C0F),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1449. {"ftans",    two(0xF000, 0x440F),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1450. {"ftanw",    two(0xF000, 0x500F),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1451. {"ftanx",    two(0xF000, 0x000F),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1452. {"ftanx",    two(0xF000, 0x480F),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1453. {"ftanx",    two(0xF000, 0x000F),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1454.  
  1455. {"ftanhb",    two(0xF000, 0x5809),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1456. {"ftanhd",    two(0xF000, 0x5409),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1457. {"ftanhl",    two(0xF000, 0x4009),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1458. {"ftanhp",    two(0xF000, 0x4C09),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1459. {"ftanhs",    two(0xF000, 0x4409),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1460. {"ftanhw",    two(0xF000, 0x5009),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1461. {"ftanhx",    two(0xF000, 0x0009),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1462. {"ftanhx",    two(0xF000, 0x4809),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1463. {"ftanhx",    two(0xF000, 0x0009),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1464.  
  1465. {"ftentoxb",    two(0xF000, 0x5812),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1466. {"ftentoxd",    two(0xF000, 0x5412),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1467. {"ftentoxl",    two(0xF000, 0x4012),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1468. {"ftentoxp",    two(0xF000, 0x4C12),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1469. {"ftentoxs",    two(0xF000, 0x4412),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1470. {"ftentoxw",    two(0xF000, 0x5012),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1471. {"ftentoxx",    two(0xF000, 0x0012),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1472. {"ftentoxx",    two(0xF000, 0x4812),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1473. {"ftentoxx",    two(0xF000, 0x0012),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1474.  
  1475. {"ftrapeq",    two(0xF07C, 0x0001),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1476. {"ftrapf",    two(0xF07C, 0x0000),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1477. {"ftrapge",    two(0xF07C, 0x0013),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1478. {"ftrapgl",    two(0xF07C, 0x0016),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1479. {"ftrapgle",    two(0xF07C, 0x0017),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1480. {"ftrapgt",    two(0xF07C, 0x0012),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1481. {"ftraple",    two(0xF07C, 0x0015),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1482. {"ftraplt",    two(0xF07C, 0x0014),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1483. {"ftrapne",    two(0xF07C, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1484. #ifndef MOTOROLA_SYNTAX
  1485. {"ftrapneq",    two(0xF07C, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1486. #endif
  1487. {"ftrapnge",    two(0xF07C, 0x001C),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1488. {"ftrapngl",    two(0xF07C, 0x0019),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1489. {"ftrapngle",    two(0xF07C, 0x0018),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1490. {"ftrapngt",    two(0xF07C, 0x001D),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1491. {"ftrapnle",    two(0xF07C, 0x001A),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1492. {"ftrapnlt",    two(0xF07C, 0x001B),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1493. {"ftrapoge",    two(0xF07C, 0x0003),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1494. {"ftrapogl",    two(0xF07C, 0x0006),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1495. {"ftrapogt",    two(0xF07C, 0x0002),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1496. {"ftrapole",    two(0xF07C, 0x0005),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1497. {"ftrapolt",    two(0xF07C, 0x0004),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1498. {"ftrapor",    two(0xF07C, 0x0007),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1499. {"ftrapseq",    two(0xF07C, 0x0011),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1500. {"ftrapsf",    two(0xF07C, 0x0010),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1501. {"ftrapsne",    two(0xF07C, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1502. #ifndef MOTOROLA_SYNTAX_ONLY
  1503. {"ftrapsneq",    two(0xF07C, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1504. #endif
  1505. {"ftrapst",    two(0xF07C, 0x001F),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1506. {"ftrapt",    two(0xF07C, 0x000F),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1507. {"ftrapueq",    two(0xF07C, 0x0009),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1508. {"ftrapuge",    two(0xF07C, 0x000B),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1509. {"ftrapugt",    two(0xF07C, 0x000A),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1510. {"ftrapule",    two(0xF07C, 0x000D),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1511. {"ftrapult",    two(0xF07C, 0x000C),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1512. {"ftrapun",    two(0xF07C, 0x0008),    two(0xF1FF, 0xFFFF),    "Ii", mfloat },
  1513.         
  1514. {"ftrapeqw",    two(0xF07A, 0x0001),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1515. {"ftrapfw",    two(0xF07A, 0x0000),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1516. {"ftrapgew",    two(0xF07A, 0x0013),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1517. {"ftrapglw",    two(0xF07A, 0x0016),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1518. {"ftrapglew",    two(0xF07A, 0x0017),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1519. {"ftrapgtw",    two(0xF07A, 0x0012),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1520. {"ftraplew",    two(0xF07A, 0x0015),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1521. {"ftrapltw",    two(0xF07A, 0x0014),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1522. {"ftrapnew",    two(0xF07A, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1523. {"ftrapngew",    two(0xF07A, 0x001C),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1524. {"ftrapnglw",    two(0xF07A, 0x0019),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1525. {"ftrapnglew",    two(0xF07A, 0x0018),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1526. {"ftrapngtw",    two(0xF07A, 0x001D),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1527. {"ftrapnlew",    two(0xF07A, 0x001A),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1528. {"ftrapnltw",    two(0xF07A, 0x001B),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1529. {"ftrapogew",    two(0xF07A, 0x0003),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1530. {"ftrapoglw",    two(0xF07A, 0x0006),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1531. {"ftrapogtw",    two(0xF07A, 0x0002),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1532. {"ftrapolew",    two(0xF07A, 0x0005),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1533. {"ftrapoltw",    two(0xF07A, 0x0004),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1534. {"ftraporw",    two(0xF07A, 0x0007),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1535. {"ftrapseqw",    two(0xF07A, 0x0011),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1536. {"ftrapsfw",    two(0xF07A, 0x0010),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1537. {"ftrapsnew",    two(0xF07A, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1538. {"ftrapstw",    two(0xF07A, 0x001F),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1539. {"ftraptw",    two(0xF07A, 0x000F),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1540. {"ftrapueqw",    two(0xF07A, 0x0009),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1541. {"ftrapugew",    two(0xF07A, 0x000B),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1542. {"ftrapugtw",    two(0xF07A, 0x000A),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1543. {"ftrapulew",    two(0xF07A, 0x000D),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1544. {"ftrapultw",    two(0xF07A, 0x000C),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1545. {"ftrapunw",    two(0xF07A, 0x0008),    two(0xF1FF, 0xFFFF),    "Ii^w", mfloat },
  1546.  
  1547. {"ftrapeql",    two(0xF07B, 0x0001),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1548. {"ftrapfl",    two(0xF07B, 0x0000),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1549. {"ftrapgel",    two(0xF07B, 0x0013),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1550. {"ftrapgll",    two(0xF07B, 0x0016),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1551. {"ftrapglel",    two(0xF07B, 0x0017),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1552. {"ftrapgtl",    two(0xF07B, 0x0012),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1553. {"ftraplel",    two(0xF07B, 0x0015),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1554. {"ftrapltl",    two(0xF07B, 0x0014),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1555. {"ftrapnel",    two(0xF07B, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1556. {"ftrapngel",    two(0xF07B, 0x001C),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1557. {"ftrapngll",    two(0xF07B, 0x0019),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1558. {"ftrapnglel",    two(0xF07B, 0x0018),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1559. {"ftrapngtl",    two(0xF07B, 0x001D),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1560. {"ftrapnlel",    two(0xF07B, 0x001A),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1561. {"ftrapnltl",    two(0xF07B, 0x001B),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1562. {"ftrapogel",    two(0xF07B, 0x0003),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1563. {"ftrapogll",    two(0xF07B, 0x0006),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1564. {"ftrapogtl",    two(0xF07B, 0x0002),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1565. {"ftrapolel",    two(0xF07B, 0x0005),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1566. {"ftrapoltl",    two(0xF07B, 0x0004),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1567. {"ftraporl",    two(0xF07B, 0x0007),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1568. {"ftrapseql",    two(0xF07B, 0x0011),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1569. {"ftrapsfl",    two(0xF07B, 0x0010),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1570. {"ftrapsnel",    two(0xF07B, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1571. {"ftrapstl",    two(0xF07B, 0x001F),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1572. {"ftraptl",    two(0xF07B, 0x000F),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1573. {"ftrapueql",    two(0xF07B, 0x0009),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1574. {"ftrapugel",    two(0xF07B, 0x000B),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1575. {"ftrapugtl",    two(0xF07B, 0x000A),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1576. {"ftrapulel",    two(0xF07B, 0x000D),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1577. {"ftrapultl",    two(0xF07B, 0x000C),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1578. {"ftrapunl",    two(0xF07B, 0x0008),    two(0xF1FF, 0xFFFF),    "Ii^l", mfloat },
  1579.  
  1580. {"ftstb",    two(0xF000, 0x583A),    two(0xF1C0, 0xFC7F),    "Ii;b", mfloat },
  1581. {"ftstd",    two(0xF000, 0x543A),    two(0xF1C0, 0xFC7F),    "Ii;F", mfloat },
  1582. {"ftstl",    two(0xF000, 0x403A),    two(0xF1C0, 0xFC7F),    "Ii;l", mfloat },
  1583. {"ftstp",    two(0xF000, 0x4C3A),    two(0xF1C0, 0xFC7F),    "Ii;p", mfloat },
  1584. {"ftsts",    two(0xF000, 0x443A),    two(0xF1C0, 0xFC7F),    "Ii;f", mfloat },
  1585. {"ftstw",    two(0xF000, 0x503A),    two(0xF1C0, 0xFC7F),    "Ii;w", mfloat },
  1586. {"ftstx",    two(0xF000, 0x003A),    two(0xF1C0, 0xE07F),    "IiF8", mfloat },
  1587. {"ftstx",    two(0xF000, 0x483A),    two(0xF1C0, 0xFC7F),    "Ii;x", mfloat },
  1588.  
  1589. {"ftwotoxb",    two(0xF000, 0x5811),    two(0xF1C0, 0xFC7F),    "Ii;bF7", mfloat },
  1590. {"ftwotoxd",    two(0xF000, 0x5411),    two(0xF1C0, 0xFC7F),    "Ii;FF7", mfloat },
  1591. {"ftwotoxl",    two(0xF000, 0x4011),    two(0xF1C0, 0xFC7F),    "Ii;lF7", mfloat },
  1592. {"ftwotoxp",    two(0xF000, 0x4C11),    two(0xF1C0, 0xFC7F),    "Ii;pF7", mfloat },
  1593. {"ftwotoxs",    two(0xF000, 0x4411),    two(0xF1C0, 0xFC7F),    "Ii;fF7", mfloat },
  1594. {"ftwotoxw",    two(0xF000, 0x5011),    two(0xF1C0, 0xFC7F),    "Ii;wF7", mfloat },
  1595. {"ftwotoxx",    two(0xF000, 0x0011),    two(0xF1C0, 0xE07F),    "IiF8F7", mfloat },
  1596. {"ftwotoxx",    two(0xF000, 0x4811),    two(0xF1C0, 0xFC7F),    "Ii;xF7", mfloat },
  1597. {"ftwotoxx",    two(0xF000, 0x0011),    two(0xF1C0, 0xE07F),    "IiFt",   mfloat },
  1598.  
  1599. /* Variable-sized float branches */
  1600.  
  1601. {"fjeq",    one(0xF081),        one(0xF1FF),        "IdBc", mfloat },
  1602. {"fjf",        one(0xF080),        one(0xF1FF),        "IdBc", mfloat },
  1603. {"fjge",    one(0xF093),        one(0xF1FF),        "IdBc", mfloat },
  1604. {"fjgl",    one(0xF096),        one(0xF1FF),        "IdBc", mfloat },
  1605. {"fjgle",    one(0xF097),        one(0xF1FF),        "IdBc", mfloat },
  1606. {"fjgt",    one(0xF092),        one(0xF1FF),        "IdBc", mfloat },
  1607. {"fjle",    one(0xF095),        one(0xF1FF),        "IdBc", mfloat },
  1608. {"fjlt",    one(0xF094),        one(0xF1FF),        "IdBc", mfloat },
  1609. {"fjne",    one(0xF08E),        one(0xF1FF),        "IdBc", mfloat },
  1610. #ifndef MOTOROLA_SYNTAX_ONLY
  1611. {"fjneq",    one(0xF08E),        one(0xF1FF),        "IdBc", mfloat },
  1612. #endif
  1613. {"fjnge",    one(0xF09C),        one(0xF1FF),        "IdBc", mfloat },
  1614. {"fjngl",    one(0xF099),        one(0xF1FF),        "IdBc", mfloat },
  1615. {"fjngle",    one(0xF098),        one(0xF1FF),        "IdBc", mfloat },
  1616. {"fjngt",    one(0xF09D),        one(0xF1FF),        "IdBc", mfloat },
  1617. {"fjnle",    one(0xF09A),        one(0xF1FF),        "IdBc", mfloat },
  1618. {"fjnlt",    one(0xF09B),        one(0xF1FF),        "IdBc", mfloat },
  1619. {"fjoge",    one(0xF083),        one(0xF1FF),        "IdBc", mfloat },
  1620. {"fjogl",    one(0xF086),        one(0xF1FF),        "IdBc", mfloat },
  1621. {"fjogt",    one(0xF082),        one(0xF1FF),        "IdBc", mfloat },
  1622. {"fjole",    one(0xF085),        one(0xF1FF),        "IdBc", mfloat },
  1623. {"fjolt",    one(0xF084),        one(0xF1FF),        "IdBc", mfloat },
  1624. {"fjor",    one(0xF087),        one(0xF1FF),        "IdBc", mfloat },
  1625. {"fjseq",    one(0xF091),        one(0xF1FF),        "IdBc", mfloat },
  1626. {"fjsf",    one(0xF090),        one(0xF1FF),        "IdBc", mfloat },
  1627. {"fjsne",    one(0xF09E),        one(0xF1FF),        "IdBc", mfloat },
  1628. #ifndef MOTOROLA_SYNTAX_ONLY
  1629. {"fjsneq",    one(0xF09E),        one(0xF1FF),        "IdBc", mfloat },
  1630. #endif
  1631. {"fjst",    one(0xF09F),        one(0xF1FF),        "IdBc", mfloat },
  1632. {"fjt",        one(0xF08F),        one(0xF1FF),        "IdBc", mfloat },
  1633. {"fjueq",    one(0xF089),        one(0xF1FF),        "IdBc", mfloat },
  1634. {"fjuge",    one(0xF08B),        one(0xF1FF),        "IdBc", mfloat },
  1635. {"fjugt",    one(0xF08A),        one(0xF1FF),        "IdBc", mfloat },
  1636. {"fjule",    one(0xF08D),        one(0xF1FF),        "IdBc", mfloat },
  1637. {"fjult",    one(0xF08C),        one(0xF1FF),        "IdBc", mfloat },
  1638. {"fjun",    one(0xF088),        one(0xF1FF),        "IdBc", mfloat },
  1639.  
  1640. /* float stuff ends here */
  1641. {"illegal",    one(0045374),        one(0177777),        "",     m68000up },
  1642.  
  1643.  
  1644. #ifndef MIT_SYNTAX_ONLY
  1645. {"jmps",        one(0047300),        one(0177700),        "!s",   m68000up },
  1646. {"jmpl",        one(0047300),        one(0177700),        "!s",   m68000up },
  1647. #endif
  1648.  
  1649. {"jmp",        one(0047300),        one(0177700),        "!s",   m68000up },
  1650. {"jsr",        one(0047200),        one(0177700),        "!s",   m68000up },
  1651. {"lea",        one(0040700),        one(0170700),        "!sAd", m68000up },
  1652. #ifndef MIT_SYNTAX_ONLY
  1653. {"leal",    one(0040700),        one(0170700),        "!sAd", m68000up },    /* allow lea as leal */
  1654. #endif
  1655.  
  1656. {"lpstop",    two(0174000, 0000700),    two(0177777, 0177777),    "",    cpu32 },
  1657.  
  1658. {"linkw",    one(0047120),        one(0177770),        "As#w", m68000up },
  1659. {"linkl",    one(0044010),        one(0177770),        "As#l", m68020up | cpu32 },
  1660. {"link",    one(0047120),        one(0177770),        "As#w", m68000up },
  1661. {"link",    one(0044010),        one(0177770),        "As#l", m68020up | cpu32 },
  1662.  
  1663. {"lslb",    one(0160410),        one(0170770),        "QdDs", m68000up },    /* lsrb #Q,    Ds */
  1664. {"lslb",    one(0160450),        one(0170770),        "DdDs", m68000up },    /* lsrb Dd,    Ds */
  1665. {"lslw",    one(0160510),        one(0170770),        "QdDs", m68000up },    /* lsrb #Q,    Ds */
  1666. {"lslw",    one(0160550),        one(0170770),        "DdDs", m68000up },    /* lsrb Dd,    Ds */
  1667. {"lslw",    one(0161700),        one(0177700),        "~s",   m68000up },    /* Shift memory */
  1668. {"lsll",    one(0160610),        one(0170770),        "QdDs", m68000up },    /* lsrb #Q,    Ds */
  1669. {"lsll",    one(0160650),        one(0170770),        "DdDs", m68000up },    /* lsrb Dd,    Ds */
  1670.  
  1671. {"lsrb",    one(0160010),        one(0170770),        "QdDs", m68000up }, /* lsrb #Q,    Ds */
  1672. {"lsrb",    one(0160050),        one(0170770),        "DdDs", m68000up },    /* lsrb Dd,    Ds */
  1673. {"lsrl",    one(0160210),        one(0170770),        "QdDs", m68000up },    /* lsrb #Q,    Ds */
  1674. {"lsrl",    one(0160250),        one(0170770),        "DdDs", m68000up },    /* lsrb #Q,    Ds */
  1675. {"lsrw",    one(0160110),        one(0170770),        "QdDs", m68000up },    /* lsrb #Q,    Ds */
  1676. {"lsrw",    one(0160150),        one(0170770),        "DdDs", m68000up },    /* lsrb #Q,    Ds */
  1677. {"lsrw",    one(0161300),        one(0177700),        "~s",   m68000up },    /* Shift memory */
  1678. {"moveal",    one(0020100),        one(0170700),        "*lAd", m68000up },
  1679. {"moveaw",    one(0030100),        one(0170700),        "*wAd", m68000up },
  1680. {"moveb",    one(0010000),        one(0170000),        ";b$d", m68000up },    /* move */
  1681. {"movel",    one(0070000),        one(0170400),        "MsDd", m68000up },    /* moveq written as move */
  1682. {"movel",    one(0020000),        one(0170000),        "*l$d", m68000up },
  1683. {"movel",    one(0020100),        one(0170700),        "*lAd", m68000up },
  1684. {"movel",    one(0047140),        one(0177770),        "AsUd", m68000up },    /* move to USP */
  1685. {"movel",    one(0047150),        one(0177770),        "UdAs", m68000up },    /* move from USP */
  1686. {"movec",    one(0047173),        one(0177777),        "R1Jj", m68010up },
  1687. {"movec",    one(0047173),        one(0177777),        "R1#j", m68010up },
  1688. {"movec",    one(0047172),        one(0177777),        "JjR1", m68010up },
  1689. {"movec",    one(0047172),        one(0177777),        "#jR1", m68010up },
  1690.  
  1691.  
  1692. /* JF added these next four for the assembler */
  1693. {"moveml",    one(0044300),        one(0177700),        "Lw&s", m68000up },    /* movem reg to mem. */
  1694. {"moveml",    one(0044340),        one(0177770),        "lw-s", m68000up },    /* movem reg to autodecrement. */
  1695. {"moveml",    one(0046300),        one(0177700),        "!sLw", m68000up },    /* movem mem to reg. */
  1696. {"moveml",    one(0046330),        one(0177770),        "+sLw", m68000up },    /* movem autoinc to reg. */
  1697.  
  1698. {"moveml",    one(0044300),        one(0177700),        "#w&s", m68000up },    /* movem reg to mem. */
  1699. {"moveml",    one(0044340),        one(0177770),        "#w-s", m68000up },    /* movem reg to autodecrement. */
  1700. {"moveml",    one(0046300),        one(0177700),        "!s#w", m68000up },    /* movem mem to reg. */
  1701. {"moveml",    one(0046330),        one(0177770),        "+s#w", m68000up },    /* movem autoinc to reg. */
  1702.  
  1703. /* JF added these next four for the assembler */
  1704. {"movemw",    one(0044200),        one(0177700),        "Lw&s", m68000up },    /* movem reg to mem. */
  1705. {"movemw",    one(0044240),        one(0177770),        "lw-s", m68000up },    /* movem reg to autodecrement. */
  1706. {"movemw",    one(0046200),        one(0177700),        "!sLw", m68000up },    /* movem mem to reg. */
  1707. {"movemw",    one(0046230),        one(0177770),        "+sLw", m68000up },    /* movem autoinc to reg. */
  1708.  
  1709. {"movemw",    one(0044200),        one(0177700),        "#w&s", m68000up },    /* movem reg to mem. */
  1710. {"movemw",    one(0044240),        one(0177770),        "#w-s", m68000up },    /* movem reg to autodecrement. */
  1711. {"movemw",    one(0046200),        one(0177700),        "!s#w", m68000up },    /* movem mem to reg. */
  1712. {"movemw",    one(0046230),        one(0177770),        "+s#w", m68000up },    /* movem autoinc to reg. */
  1713. #ifndef NO_DEFAULT_SIZES
  1714. {"movem",    one(0044200),        one(0177700),        "Lw&s", m68000up },    /* movem reg to mem. */
  1715. {"movem",    one(0044240),        one(0177770),        "lw-s", m68000up },    /* movem reg to autodecrement. */
  1716. {"movem",    one(0046200),        one(0177700),        "!sLw", m68000up },    /* movem mem to reg. */
  1717. {"movem",    one(0046230),        one(0177770),        "+sLw", m68000up },    /* movem autoinc to reg. */
  1718.  
  1719. {"movem",    one(0044200),        one(0177700),        "#w&s", m68000up },    /* movem reg to mem. */
  1720. {"movem",    one(0044240),        one(0177770),        "#w-s", m68000up },    /* movem reg to autodecrement. */
  1721. {"movem",    one(0046200),        one(0177700),        "!s#w", m68000up },    /* movem mem to reg. */
  1722. {"movem",    one(0046230),        one(0177770),        "+s#w", m68000up },    /* movem autoinc to reg. */
  1723. #endif
  1724.  
  1725. {"movepl",    one(0000510),        one(0170770),        "dsDd", m68000up },    /* memory to register */
  1726. {"movepl",    one(0000710),        one(0170770),        "Ddds", m68000up },    /* register to memory */
  1727. {"movepw",    one(0000410),        one(0170770),        "dsDd", m68000up },    /* memory to register */
  1728. {"movepw",    one(0000610),        one(0170770),        "Ddds", m68000up },    /* register to memory */
  1729. #ifndef NO_DEFAULT_SIZES
  1730. {"movep",    one(0000410),        one(0170770),        "dsDd", m68000up },    /* memory to register */
  1731. {"movep",    one(0000610),        one(0170770),        "Ddds", m68000up },    /* register to memory */
  1732. #endif
  1733. {"moveq",    one(0070000),        one(0170400),        "MsDd", m68000up },
  1734. #ifndef MIT_SYNTAX_ONLY
  1735. {"moveq",    one(0020000),        one(0170000),        "*l$d", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  1736. {"moveq",    one(0020100),        one(0170700),        "*lAd", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  1737. {"moveq",    one(0047140),        one(0177770),        "AsUd", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  1738. {"moveq",    one(0047150),        one(0177770),        "UdAs", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  1739. #endif
  1740. {"movew",    one(0030000),        one(0170000),        "*w$d", m68000up },
  1741. {"movew",    one(0030100),        one(0170700),        "*wAd", m68000up },    /* movea,    written as move */
  1742. {"movew",    one(0040300),        one(0177700),        "Ss$s", m68000up },    /* Move from sr */
  1743. {"movew",    one(0041300),        one(0177700),        "Cs$s", m68010up },    /* Move from ccr */
  1744. {"movew",    one(0042300),        one(0177700),        ";wCd", m68000up },    /* move to ccr */
  1745. {"movew",    one(0043300),        one(0177700),        ";wSd", m68000up },    /* move to sr */
  1746.  
  1747.  
  1748. {"movesb",    two(0007000, 0),    two(0177700, 07777),    "~sR1", m68010up },     /* moves from memory */
  1749. {"movesb",    two(0007000, 04000),    two(0177700, 07777),    "R1~s", m68010up },     /* moves to memory */
  1750. {"movesl",    two(0007200, 0),    two(0177700, 07777),    "~sR1", m68010up },     /* moves from memory */
  1751. {"movesl",    two(0007200, 04000),    two(0177700, 07777),    "R1~s", m68010up },     /* moves to memory */
  1752. {"movesw",    two(0007100, 0),    two(0177700, 07777),    "~sR1", m68010up },     /* moves from memory */
  1753. {"movesw",    two(0007100, 04000),    two(0177700, 07777),    "R1~s", m68010up },     /* moves to memory */
  1754.  
  1755. {"move16",    two(0xf620, 0x8000),    two(0xfff8, 0x8fff),    "+s+1", m68040 },
  1756. {"move16",    one(0xf600),    one(0xfff8),    "+s_L", m68040 },
  1757. {"move16",    one(0xf608),    one(0xfff8),    "_L+s", m68040 },
  1758. {"move16",    one(0xf610),    one(0xfff8),    "as_L", m68040 },
  1759. {"move16",    one(0xf618),    one(0xfff8),    "_Las", m68040 },
  1760.  
  1761. {"mulsl",    two(0046000, 004000),    two(0177700, 0107770),    ";lD1", m68020up | cpu32 },
  1762. {"mulsl",    two(0046000, 006000),    two(0177700, 0107770),    ";lD3D1", m68020up | cpu32 },
  1763. {"mulsw",    one(0140700),        one(0170700),        ";wDd", m68000up },
  1764. {"muls",    one(0140700),        one(0170700),        ";wDd", m68000up },
  1765. {"mulul",    two(0046000, 000000),    two(0177700, 0107770),    ";lD1", m68020up | cpu32 },
  1766. {"mulul",    two(0046000, 002000),    two(0177700, 0107770),    ";lD3D1", m68020up | cpu32 },
  1767. {"muluw",    one(0140300),        one(0170700),        ";wDd", m68000up },
  1768. {"mulu",    one(0140300),        one(0170700),        ";wDd", m68000up },
  1769. {"nbcd",    one(0044000),        one(0177700),        "$s", m68000up },
  1770.  
  1771. {"negb",    one(0042000),        one(0177700),        "$s", m68000up },
  1772. {"negl",    one(0042200),        one(0177700),        "$s", m68000up },
  1773. {"negw",    one(0042100),        one(0177700),        "$s", m68000up },
  1774. #ifndef NO_DEFAULT_SIZES
  1775. {"neg",        one(0042200),        one(0177700),        "$s", m68000up },
  1776. #endif
  1777.  
  1778. {"negxb",    one(0040000),        one(0177700),        "$s", m68000up },
  1779. {"negxl",    one(0040200),        one(0177700),        "$s", m68000up },
  1780. {"negxw",    one(0040100),        one(0177700),        "$s", m68000up },
  1781. #ifndef NO_DEFAULT_SIZES
  1782. {"negx",    one(0040200),        one(0177700),        "$s", m68000up },
  1783. #endif
  1784.  
  1785. {"nop",        one(0047161),        one(0177777),        "", m68000up },
  1786.  
  1787. {"notb",    one(0043000),        one(0177700),        "$s", m68000up },
  1788. {"notl",    one(0043200),        one(0177700),        "$s", m68000up },
  1789. {"notw",    one(0043100),        one(0177700),        "$s", m68000up },
  1790. #ifndef NO_DEFAULT_SIZES
  1791. {"not",        one(0043200),        one(0177700),        "$s", m68000up },
  1792. #endif
  1793.  
  1794. {"orb",        one(0000000),        one(0177700),        "#b$s", m68000up },    /* ori written as or */
  1795. {"orb",        one(0000074),        one(0177777),        "#bCs", m68000up },    /* ori to ccr */
  1796. {"orb",        one(0100000),        one(0170700),        ";bDd", m68000up },    /* memory to register */
  1797. {"orb",        one(0100400),        one(0170700),        "Dd~s", m68000up },    /* register to memory */
  1798. {"orib",    one(0000000),        one(0177700),        "#b$s", m68000up },
  1799. {"orib",    one(0000074),        one(0177777),        "#bCs", m68000up },    /* ori to ccr */
  1800. {"oril",    one(0000200),        one(0177700),        "#l$s", m68000up },
  1801. {"oriw",    one(0000100),        one(0177700),        "#w$s", m68000up },
  1802. {"oriw",    one(0000174),        one(0177777),        "#wSs", m68000up },    /* ori to sr */
  1803. {"orl",        one(0000200),        one(0177700),        "#l$s", m68000up },
  1804. {"orl",        one(0100200),        one(0170700),        ";lDd", m68000up },    /* memory to register */
  1805. {"orl",        one(0100600),        one(0170700),        "Dd~s", m68000up },    /* register to memory */
  1806. {"orw",        one(0000100),        one(0177700),        "#w$s", m68000up },
  1807. {"orw",        one(0000174),        one(0177777),        "#wSs", m68000up },    /* ori to sr */
  1808. {"orw",        one(0100100),        one(0170700),        ";wDd", m68000up },    /* memory to register */
  1809. {"orw",        one(0100500),        one(0170700),        "Dd~s", m68000up },    /* register to memory */
  1810. #ifndef NO_DEFAULT_SIZES
  1811. {"ori",        one(0000174),        one(0177777),        "#wSs", m68000up },    /* ori to sr */
  1812.  
  1813. {"or",        one(0000100),        one(0177700),        "#w$s", m68000up },
  1814. {"or",        one(0000174),        one(0177777),        "#wSs", m68000up },    /* ori to sr */
  1815. {"or",        one(0100100),        one(0170700),        ";wDd", m68000up },    /* memory to register */
  1816. {"or",        one(0100500),        one(0170700),        "Dd~s", m68000up },    /* register to memory */
  1817. #endif
  1818.  
  1819. {"pack",    one(0100500),        one(0170770),        "DsDd#w", m68020up },    /* pack Ds,    Dd,    #w */
  1820. {"pack",    one(0100510),        one(0170770),        "-s-d#w", m68020up },    /* pack -(As),    -(Ad),    #w */
  1821.  
  1822. #ifndef NO_68851
  1823. {"pbac",    one(0xf0c7),        one(0xffff),        "Bc", m68851 },
  1824. {"pbacw",    one(0xf087),        one(0xffff),        "Bc", m68851 },
  1825. {"pbas",    one(0xf0c6),        one(0xffff),        "Bc", m68851 },
  1826. {"pbasw",    one(0xf086),        one(0xffff),        "Bc", m68851 },
  1827. {"pbbc",    one(0xf0c1),        one(0xffff),        "Bc", m68851 },
  1828. {"pbbcw",    one(0xf081),        one(0xffff),        "Bc", m68851 },
  1829. {"pbbs",    one(0xf0c0),        one(0xffff),        "Bc", m68851 },
  1830. {"pbbsw",    one(0xf080),        one(0xffff),        "Bc", m68851 },
  1831. {"pbcc",    one(0xf0cf),        one(0xffff),        "Bc", m68851 },
  1832. {"pbccw",    one(0xf08f),        one(0xffff),        "Bc", m68851 },
  1833. {"pbcs",    one(0xf0ce),        one(0xffff),        "Bc", m68851 },
  1834. {"pbcsw",    one(0xf08e),        one(0xffff),        "Bc", m68851 },
  1835. {"pbgc",    one(0xf0cd),        one(0xffff),        "Bc", m68851 },
  1836. {"pbgcw",    one(0xf08d),        one(0xffff),        "Bc", m68851 },
  1837. {"pbgs",    one(0xf0cc),        one(0xffff),        "Bc", m68851 },
  1838. {"pbgsw",    one(0xf08c),        one(0xffff),        "Bc", m68851 },
  1839. {"pbic",    one(0xf0cb),        one(0xffff),        "Bc", m68851 },
  1840. {"pbicw",    one(0xf08b),        one(0xffff),        "Bc", m68851 },
  1841. {"pbis",    one(0xf0ca),        one(0xffff),        "Bc", m68851 },
  1842. {"pbisw",    one(0xf08a),        one(0xffff),        "Bc", m68851 },
  1843. {"pblc",    one(0xf0c3),        one(0xffff),        "Bc", m68851 },
  1844. {"pblcw",    one(0xf083),        one(0xffff),        "Bc", m68851 },
  1845. {"pbls",    one(0xf0c2),        one(0xffff),        "Bc", m68851 },
  1846. {"pblsw",    one(0xf082),        one(0xffff),        "Bc", m68851 },
  1847. {"pbsc",    one(0xf0c5),        one(0xffff),        "Bc", m68851 },
  1848. {"pbscw",    one(0xf085),        one(0xffff),        "Bc", m68851 },
  1849. {"pbss",    one(0xf0c4),        one(0xffff),        "Bc", m68851 },
  1850. {"pbssw",    one(0xf084),        one(0xffff),        "Bc", m68851 },
  1851. {"pbwc",    one(0xf0c9),        one(0xffff),        "Bc", m68851 },
  1852. {"pbwcw",    one(0xf089),        one(0xffff),        "Bc", m68851 },
  1853. {"pbws",    one(0xf0c8),        one(0xffff),        "Bc", m68851 },
  1854. {"pbwsw",    one(0xf088),        one(0xffff),        "Bc", m68851 },
  1855.  
  1856. {"pdbac",    two(0xf048, 0x0007),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1857. {"pdbas",    two(0xf048, 0x0006),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1858. {"pdbbc",    two(0xf048, 0x0001),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1859. {"pdbbs",    two(0xf048, 0x0000),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1860. {"pdbcc",    two(0xf048, 0x000f),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1861. {"pdbcs",    two(0xf048, 0x000e),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1862. {"pdbgc",    two(0xf048, 0x000d),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1863. {"pdbgs",    two(0xf048, 0x000c),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1864. {"pdbic",    two(0xf048, 0x000b),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1865. {"pdbis",    two(0xf048, 0x000a),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1866. {"pdblc",    two(0xf048, 0x0003),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1867. {"pdbls",    two(0xf048, 0x0002),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1868. {"pdbsc",    two(0xf048, 0x0005),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1869. {"pdbss",    two(0xf048, 0x0004),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1870. {"pdbwc",    two(0xf048, 0x0009),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1871. {"pdbws",    two(0xf048, 0x0008),    two(0xfff8, 0xffff),    "DsBw", m68851 },
  1872. #endif /* NO_68851 */
  1873.  
  1874. {"pea",        one(0044100),        one(0177700),        "!s", m68000up },
  1875.  
  1876. #ifndef NO_68851
  1877. {"pflusha",    two(0xf000, 0x2400),    two(0xffff, 0xffff),    "",        m68030 | m68851 },
  1878. {"pflusha",    one(0xf518),        one(0xfff8),         "",        m68040 },
  1879.  
  1880. {"pflush",    two(0xf000, 0x3010),    two(0xffc0, 0xfe10),    "T3T9",        m68030 | m68851 },
  1881. {"pflush",    two(0xf000, 0x3810),    two(0xffc0, 0xfe10),    "T3T9&s",    m68030 | m68851 },
  1882. {"pflush",    two(0xf000, 0x3008),    two(0xffc0, 0xfe18),    "D3T9",        m68030 | m68851 },
  1883. {"pflush",    two(0xf000, 0x3808),    two(0xffc0, 0xfe18),    "D3T9&s",    m68030 | m68851 },
  1884. {"pflush",    two(0xf000, 0x3000),    two(0xffc0, 0xfe1e),    "f3T9",        m68030 | m68851 },
  1885. {"pflush",    two(0xf000, 0x3800),    two(0xffc0, 0xfe1e),    "f3T9&s",    m68030 | m68851 },
  1886.  
  1887. /* For pflush, pflushn on '040: Documentation describes address-register-indirect mode, but
  1888.    old assembler accepted only address-register.  Added a-r-i as new default, still
  1889.    accepting old form for now.  [raeburn:19920908.1910EST]  */
  1890. {"pflush",    one(0xf508),        one(0xfff8),         "as",        m68040 },
  1891. {"pflush",    one(0xf508),        one(0xfff8),         "As",        m68040 },
  1892.  
  1893. {"pflushan",    one(0xf510),        one(0xfff8),        "",        m68040 },
  1894. {"pflushn",    one(0xf500),        one(0xfff8),        "as",        m68040 },
  1895. {"pflushn",    one(0xf500),        one(0xfff8),        "As",        m68040 },
  1896.  
  1897. {"pflushr",    two(0xf000, 0xa000),    two(0xffc0, 0xffff),    "|s",        m68851 },
  1898.  
  1899. {"pflushs",    two(0xf000, 0x3410),    two(0xfff8, 0xfe10),    "T3T9",        m68851 },
  1900. {"pflushs",    two(0xf000, 0x3c10),    two(0xfff8, 0xfe10),    "T3T9&s",    m68851 },
  1901. {"pflushs",    two(0xf000, 0x3408),    two(0xfff8, 0xfe18),    "D3T9",        m68851 },
  1902. {"pflushs",    two(0xf000, 0x3c08),    two(0xfff8, 0xfe18),    "D3T9&s",    m68851 },
  1903. {"pflushs",    two(0xf000, 0x3400),    two(0xfff8, 0xfe1e),    "f3T9",        m68851 },
  1904. {"pflushs",    two(0xf000, 0x3c00),    two(0xfff8, 0xfe1e),    "f3T9&s",    m68851 },
  1905.  
  1906. {"ploadr",    two(0xf000, 0x2210),    two(0xffc0, 0xfff0),    "T3&s",    m68030 | m68851 },
  1907. {"ploadr",    two(0xf000, 0x2208),    two(0xffc0, 0xfff8),    "D3&s",    m68030 | m68851 },
  1908. {"ploadr",    two(0xf000, 0x2200),    two(0xffc0, 0xfffe),    "f3&s",    m68030 | m68851 },
  1909. {"ploadw",    two(0xf000, 0x2010),    two(0xffc0, 0xfff0),    "T3&s",    m68030 | m68851 },
  1910. {"ploadw",    two(0xf000, 0x2008),    two(0xffc0, 0xfff8),    "D3&s",    m68030 | m68851 },
  1911. {"ploadw",    two(0xf000, 0x2000),    two(0xffc0, 0xfffe),    "f3&s",    m68030 | m68851 },
  1912.  
  1913. /* TC, CRP, DRP, SRP, CAL, VAL, SCC, AC */
  1914. {"pmove",    two(0xf000, 0x4000),    two(0xffc0, 0xe3ff),    "*sP8",    m68030 | m68851 },
  1915. {"pmove",    two(0xf000, 0x4200),    two(0xffc0, 0xe3ff),    "P8%s",    m68030 | m68851 },
  1916. {"pmove",    two(0xf000, 0x4000),    two(0xffc0, 0xe3ff),    "|sW8",    m68030 | m68851 },
  1917. {"pmove",    two(0xf000, 0x4200),    two(0xffc0, 0xe3ff),    "W8~s",    m68030 | m68851 },
  1918.  
  1919. /* BADx, BACx */
  1920. {"pmove",    two(0xf000, 0x6200),    two(0xffc0, 0xe3e3),    "*sX3",    m68851 },
  1921. {"pmove",    two(0xf000, 0x6000),    two(0xffc0, 0xe3e3),    "X3%s",    m68851 },
  1922.  
  1923. /* PSR/MMUSR(68030)/ACUSR(68ec030), PCSR */
  1924. /* {"pmove",    two(0xf000, 0x6100),    two(oxffc0, oxffff),    "*sZ8",    m68851 }, */
  1925. {"pmove",    two(0xf000, 0x6000),    two(0xffc0, 0xffff),    "*sY8",    m68030 | m68851 },
  1926. {"pmove",    two(0xf000, 0x6200),    two(0xffc0, 0xffff),    "Y8%s",    m68030 | m68851 },
  1927. {"pmove",    two(0xf000, 0x6600),    two(0xffc0, 0xffff),    "Z8%s",    m68851 },
  1928.  
  1929. /* TT0/AC0, TT1/AC1 */
  1930. {"pmove",    two(0xf000, 0x0800),    two(0xffc0, 0xfbff),    "*s38",    m68030 },
  1931. {"pmove",    two(0xf000, 0x0a00),    two(0xffc0, 0xfbff),    "38%s",    m68030 },
  1932.  
  1933. /* flush-disabled versions */
  1934. {"pmovefd",    two(0xf000, 0x4300),    two(0xffc0, 0xe3ff),    "P8%s",    m68030 },
  1935. {"pmovefd",    two(0xf000, 0x4300),    two(0xffc0, 0xe3ff),    "W8~s",    m68030 },
  1936. {"pmovefd",    two(0xf000, 0x0900),    two(0xffc0, 0xfbff),    "*s38",    m68030 },
  1937. {"pmovefd",    two(0xf000, 0x0b00),    two(0xffc0, 0xfbff),    "38%s",    m68030 },
  1938.  
  1939. {"prestore",    one(0xf140),        one(0xffc0),        "&s", m68851 },
  1940. {"prestore",    one(0xf158),        one(0xfff8),        "+s", m68851 },
  1941. #ifndef MOTOROLA_SYNTAX_ONLY
  1942. /* The two identical psave instructions seems dubious. FIXME */
  1943. {"psave",    one(0xf100),        one(0xffc0),        "&s", m68851 },
  1944. {"psave",    one(0xf100),        one(0xffc0),        "+s", m68851 },
  1945. #endif
  1946.  
  1947. {"psac",    two(0xf040, 0x0007),    two(0xffc0, 0xffff),    "@s", m68851 },
  1948. {"psas",    two(0xf040, 0x0006),    two(0xffc0, 0xffff),    "@s", m68851 },
  1949. {"psbc",    two(0xf040, 0x0001),    two(0xffc0, 0xffff),    "@s", m68851 },
  1950. {"psbs",    two(0xf040, 0x0000),    two(0xffc0, 0xffff),    "@s", m68851 },
  1951. {"pscc",    two(0xf040, 0x000f),    two(0xffc0, 0xffff),    "@s", m68851 },
  1952. {"pscs",    two(0xf040, 0x000e),    two(0xffc0, 0xffff),    "@s", m68851 },
  1953. {"psgc",    two(0xf040, 0x000d),    two(0xffc0, 0xffff),    "@s", m68851 },
  1954. {"psgs",    two(0xf040, 0x000c),    two(0xffc0, 0xffff),    "@s", m68851 },
  1955. {"psic",    two(0xf040, 0x000b),    two(0xffc0, 0xffff),    "@s", m68851 },
  1956. {"psis",    two(0xf040, 0x000a),    two(0xffc0, 0xffff),    "@s", m68851 },
  1957. {"pslc",    two(0xf040, 0x0003),    two(0xffc0, 0xffff),    "@s", m68851 },
  1958. {"psls",    two(0xf040, 0x0002),    two(0xffc0, 0xffff),    "@s", m68851 },
  1959. {"pssc",    two(0xf040, 0x0005),    two(0xffc0, 0xffff),    "@s", m68851 },
  1960. {"psss",    two(0xf040, 0x0004),    two(0xffc0, 0xffff),    "@s", m68851 },
  1961. {"pswc",    two(0xf040, 0x0009),    two(0xffc0, 0xffff),    "@s", m68851 },
  1962. {"psws",    two(0xf040, 0x0008),    two(0xffc0, 0xffff),    "@s", m68851 },
  1963.  
  1964. {"ptestr",    two(0xf000, 0x8210),    two(0xffc0, 0xe3f0),    "T3&st8",    m68030 | m68851 },
  1965. {"ptestr",    two(0xf000, 0x8310),    two(0xffc0, 0xe310),    "T3&st8A9",    m68030 | m68851 },
  1966. {"ptestr",    two(0xf000, 0x8208),    two(0xffc0, 0xe3f8),    "D3&st8",    m68030 | m68851 },
  1967. {"ptestr",    two(0xf000, 0x8308),    two(0xffc0, 0xe318),    "D3&st8A9",    m68030 | m68851 },
  1968. {"ptestr",    two(0xf000, 0x8200),    two(0xffc0, 0xe3fe),    "f3&st8",    m68030 | m68851 },
  1969. {"ptestr",    two(0xf000, 0x8300),    two(0xffc0, 0xe31e),    "f3&st8A9",    m68030 | m68851 },
  1970.  
  1971. {"ptestr",    one(0xf568),        one(0xfff8),        "as",        m68040 },
  1972.  
  1973. {"ptestw",    two(0xf000, 0x8010),    two(0xffc0, 0xe3f0),    "T3&st8",    m68030 | m68851 },
  1974. {"ptestw",    two(0xf000, 0x8110),    two(0xffc0, 0xe310),    "T3&st8A9",    m68030 | m68851 },
  1975. {"ptestw",    two(0xf000, 0x8008),    two(0xffc0, 0xe3f8),    "D3&st8",    m68030 | m68851 },
  1976. {"ptestw",    two(0xf000, 0x8108),    two(0xffc0, 0xe318),    "D3&st8A9",    m68030 | m68851 },
  1977. {"ptestw",    two(0xf000, 0x8000),    two(0xffc0, 0xe3fe),    "f3&st8",    m68030 | m68851 },
  1978. {"ptestw",    two(0xf000, 0x8100),    two(0xffc0, 0xe31e),    "f3&st8A9",    m68030 | m68851 },
  1979.  
  1980. {"ptestw",    one(0xf548),        one(0xfff8),        "as",        m68040 },
  1981.  
  1982. {"ptrapacw",    two(0xf07a, 0x0007),    two(0xffff, 0xffff),    "#w", m68851 },
  1983. {"ptrapacl",    two(0xf07b, 0x0007),    two(0xffff, 0xffff),    "#l", m68851 },
  1984. {"ptrapac",    two(0xf07c, 0x0007),    two(0xffff, 0xffff),    "",   m68851 },
  1985.  
  1986. {"ptrapasw",    two(0xf07a, 0x0006),    two(0xffff, 0xffff),    "#w", m68851 },
  1987. {"ptrapasl",    two(0xf07b, 0x0006),    two(0xffff, 0xffff),    "#l", m68851 },
  1988. {"ptrapas",    two(0xf07c, 0x0006),    two(0xffff, 0xffff),    "",   m68851 },
  1989.  
  1990. {"ptrapbcw",    two(0xf07a, 0x0001),    two(0xffff, 0xffff),    "#w", m68851 },
  1991. {"ptrapbcl",    two(0xf07b, 0x0001),    two(0xffff, 0xffff),    "#l", m68851 },
  1992. {"ptrapbc",    two(0xf07c, 0x0001),    two(0xffff, 0xffff),    "",   m68851 },
  1993.  
  1994. {"ptrapbsw",    two(0xf07a, 0x0000),    two(0xffff, 0xffff),    "#w", m68851 },
  1995. {"ptrapbsl",    two(0xf07b, 0x0000),    two(0xffff, 0xffff),    "#l", m68851 },
  1996. {"ptrapbs",    two(0xf07c, 0x0000),    two(0xffff, 0xffff),    "",   m68851 },
  1997.  
  1998. {"ptrapccw",    two(0xf07a, 0x000f),    two(0xffff, 0xffff),    "#w", m68851 },
  1999. {"ptrapccl",    two(0xf07b, 0x000f),    two(0xffff, 0xffff),    "#l", m68851 },
  2000. {"ptrapcc",    two(0xf07c, 0x000f),    two(0xffff, 0xffff),    "",   m68851 },
  2001.  
  2002. {"ptrapcsw",    two(0xf07a, 0x000e),    two(0xffff, 0xffff),    "#w", m68851 },
  2003. {"ptrapcsl",    two(0xf07b, 0x000e),    two(0xffff, 0xffff),    "#l", m68851 },
  2004. {"ptrapcs",    two(0xf07c, 0x000e),    two(0xffff, 0xffff),    "",   m68851 },
  2005.  
  2006. {"ptrapgcw",    two(0xf07a, 0x000d),    two(0xffff, 0xffff),    "#w", m68851 },
  2007. {"ptrapgcl",    two(0xf07b, 0x000d),    two(0xffff, 0xffff),    "#l", m68851 },
  2008. {"ptrapgc",    two(0xf07c, 0x000d),    two(0xffff, 0xffff),    "",   m68851 },
  2009.  
  2010. {"ptrapgsw",    two(0xf07a, 0x000c),    two(0xffff, 0xffff),    "#w", m68851 },
  2011. {"ptrapgsl",    two(0xf07b, 0x000c),    two(0xffff, 0xffff),    "#l", m68851 },
  2012. {"ptrapgs",    two(0xf07c, 0x000c),    two(0xffff, 0xffff),    "",   m68851 },
  2013.  
  2014. {"ptrapicw",    two(0xf07a, 0x000b),    two(0xffff, 0xffff),    "#w", m68851 },
  2015. {"ptrapicl",    two(0xf07b, 0x000b),    two(0xffff, 0xffff),    "#l", m68851 },
  2016. {"ptrapic",    two(0xf07c, 0x000b),    two(0xffff, 0xffff),    "",   m68851 },
  2017.  
  2018. {"ptrapisw",    two(0xf07a, 0x000a),    two(0xffff, 0xffff),    "#w", m68851 },
  2019. {"ptrapisl",    two(0xf07b, 0x000a),    two(0xffff, 0xffff),    "#l", m68851 },
  2020. {"ptrapis",    two(0xf07c, 0x000a),    two(0xffff, 0xffff),    "",   m68851 },
  2021.  
  2022. {"ptraplcw",    two(0xf07a, 0x0003),    two(0xffff, 0xffff),    "#w", m68851 },
  2023. {"ptraplcl",    two(0xf07b, 0x0003),    two(0xffff, 0xffff),    "#l", m68851 },
  2024. {"ptraplc",    two(0xf07c, 0x0003),    two(0xffff, 0xffff),    "",   m68851 },
  2025.  
  2026. {"ptraplsw",    two(0xf07a, 0x0002),    two(0xffff, 0xffff),    "#w", m68851 },
  2027. {"ptraplsl",    two(0xf07b, 0x0002),    two(0xffff, 0xffff),    "#l", m68851 },
  2028. {"ptrapls",    two(0xf07c, 0x0002),    two(0xffff, 0xffff),    "",   m68851 },
  2029.  
  2030. {"ptrapscw",    two(0xf07a, 0x0005),    two(0xffff, 0xffff),    "#w", m68851 },
  2031. {"ptrapscl",    two(0xf07b, 0x0005),    two(0xffff, 0xffff),    "#l", m68851 },
  2032. {"ptrapsc",    two(0xf07c, 0x0005),    two(0xffff, 0xffff),    "",   m68851 },
  2033.  
  2034. {"ptrapssw",    two(0xf07a, 0x0004),    two(0xffff, 0xffff),    "#w", m68851 },
  2035. {"ptrapssl",    two(0xf07b, 0x0004),    two(0xffff, 0xffff),    "#l", m68851 },
  2036. {"ptrapss",    two(0xf07c, 0x0004),    two(0xffff, 0xffff),    "",   m68851 },
  2037.  
  2038. {"ptrapwcw",    two(0xf07a, 0x0009),    two(0xffff, 0xffff),    "#w", m68851 },
  2039. {"ptrapwcl",    two(0xf07b, 0x0009),    two(0xffff, 0xffff),    "#l", m68851 },
  2040. {"ptrapwc",    two(0xf07c, 0x0009),    two(0xffff, 0xffff),    "",   m68851 },
  2041.  
  2042. {"ptrapwsw",    two(0xf07a, 0x0008),    two(0xffff, 0xffff),    "#w", m68851 },
  2043. {"ptrapwsl",    two(0xf07b, 0x0008),    two(0xffff, 0xffff),    "#l", m68851 },
  2044. {"ptrapws",    two(0xf07c, 0x0008),    two(0xffff, 0xffff),    "",   m68851 },
  2045.  
  2046. {"pvalid",    two(0xf000, 0x2800),    two(0xffc0, 0xffff),    "Vs&s", m68851 },
  2047. {"pvalid",    two(0xf000, 0x2c00),    two(0xffc0, 0xfff8),    "A3&s", m68851 },
  2048.  
  2049. #endif /* NO_68851 */
  2050.  
  2051. {"reset",    one(0047160),        one(0177777),        "", m68000up },
  2052.  
  2053. {"rolb",    one(0160430),        one(0170770),        "QdDs", m68000up },    /* rorb #Q,    Ds */
  2054. {"rolb",    one(0160470),        one(0170770),        "DdDs", m68000up },    /* rorb Dd,    Ds */
  2055. {"roll",    one(0160630),        one(0170770),        "QdDs", m68000up },    /* rorb #Q,    Ds */
  2056. {"roll",    one(0160670),        one(0170770),        "DdDs", m68000up },    /* rorb Dd,    Ds */
  2057. {"rolw",    one(0160530),        one(0170770),        "QdDs", m68000up },    /* rorb #Q,    Ds */
  2058. {"rolw",    one(0160570),        one(0170770),        "DdDs", m68000up },    /* rorb Dd,    Ds */
  2059. {"rolw",    one(0163700),        one(0177700),        "~s",   m68000up },    /* Rotate memory */
  2060. {"rorb",    one(0160030),        one(0170770),        "QdDs", m68000up },    /* rorb #Q,    Ds */
  2061. {"rorb",    one(0160070),        one(0170770),        "DdDs", m68000up },    /* rorb Dd,    Ds */
  2062. {"rorl",    one(0160230),        one(0170770),        "QdDs", m68000up },    /* rorb #Q,    Ds */
  2063. {"rorl",    one(0160270),        one(0170770),        "DdDs", m68000up },    /* rorb Dd,    Ds */
  2064. {"rorw",    one(0160130),        one(0170770),        "QdDs", m68000up },    /* rorb #Q,    Ds */
  2065. {"rorw",    one(0160170),        one(0170770),        "DdDs", m68000up },    /* rorb Dd,    Ds */
  2066. {"rorw",    one(0163300),        one(0177700),        "~s",   m68000up },    /* Rotate memory */
  2067.  
  2068. {"roxlb",    one(0160420),        one(0170770),        "QdDs", m68000up },    /* roxrb #Q,    Ds */
  2069. {"roxlb",    one(0160460),        one(0170770),        "DdDs", m68000up },    /* roxrb Dd,    Ds */
  2070. {"roxll",    one(0160620),        one(0170770),        "QdDs", m68000up },    /* roxrb #Q,    Ds */
  2071. {"roxll",    one(0160660),        one(0170770),        "DdDs", m68000up },    /* roxrb Dd,    Ds */
  2072. {"roxlw",    one(0160520),        one(0170770),        "QdDs", m68000up },    /* roxrb #Q,    Ds */
  2073. {"roxlw",    one(0160560),        one(0170770),        "DdDs", m68000up },    /* roxrb Dd,    Ds */
  2074. {"roxlw",    one(0162700),        one(0177700),        "~s",   m68000up },    /* Rotate memory */
  2075. {"roxrb",    one(0160020),        one(0170770),        "QdDs", m68000up },    /* roxrb #Q,    Ds */
  2076. {"roxrb",    one(0160060),        one(0170770),        "DdDs", m68000up },    /* roxrb Dd,    Ds */
  2077. {"roxrl",    one(0160220),        one(0170770),        "QdDs", m68000up },    /* roxrb #Q,    Ds */
  2078. {"roxrl",    one(0160260),        one(0170770),        "DdDs", m68000up },    /* roxrb Dd,    Ds */
  2079. {"roxrw",    one(0160120),        one(0170770),        "QdDs", m68000up },    /* roxrb #Q,    Ds */
  2080. {"roxrw",    one(0160160),        one(0170770),        "DdDs", m68000up },    /* roxrb Dd,    Ds */
  2081. {"roxrw",    one(0162300),        one(0177700),        "~s",   m68000up },    /* Rotate memory */
  2082.  
  2083. {"rtd",        one(0047164),        one(0177777),        "#w", m68010up },
  2084. {"rte",        one(0047163),        one(0177777),        "",   m68000up },
  2085. {"rtm",        one(0003300),        one(0177760),        "Rs", m68020 },
  2086. {"rtr",        one(0047167),        one(0177777),        "",   m68000up },
  2087. {"rts",        one(0047165),        one(0177777),        "",   m68000up },
  2088.  
  2089. {"sbcd",    one(0100400),        one(0170770),        "DsDd", m68000up },
  2090. {"sbcd",    one(0100410),        one(0170770),        "-s-d", m68000up },
  2091.  
  2092. {"scc",        one(0052300),        one(0177700),        "$s", m68000up },
  2093. {"scs",        one(0052700),        one(0177700),        "$s", m68000up },
  2094. {"seq",        one(0053700),        one(0177700),        "$s", m68000up },
  2095. {"sf",        one(0050700),        one(0177700),        "$s", m68000up },
  2096. {"sge",        one(0056300),        one(0177700),        "$s", m68000up },
  2097. {"sfge",    one(0056300),        one(0177700),        "$s", m68000up },
  2098. {"sgt",        one(0057300),        one(0177700),        "$s", m68000up },
  2099. {"sfgt",    one(0057300),        one(0177700),        "$s", m68000up },
  2100. {"shi",        one(0051300),        one(0177700),        "$s", m68000up },
  2101. {"sle",        one(0057700),        one(0177700),        "$s", m68000up },
  2102. {"sfle",    one(0057700),        one(0177700),        "$s", m68000up },
  2103. {"sls",        one(0051700),        one(0177700),        "$s", m68000up },
  2104. {"slt",        one(0056700),        one(0177700),        "$s", m68000up },
  2105. {"sflt",    one(0056700),        one(0177700),        "$s", m68000up },
  2106. {"smi",        one(0055700),        one(0177700),        "$s", m68000up },
  2107. {"sne",        one(0053300),        one(0177700),        "$s", m68000up },
  2108. {"sfneq",    one(0053300),        one(0177700),        "$s", m68000up },
  2109. {"spl",        one(0055300),        one(0177700),        "$s", m68000up },
  2110. {"st",        one(0050300),        one(0177700),        "$s", m68000up },
  2111. {"svc",        one(0054300),        one(0177700),        "$s", m68000up },
  2112. {"svs",        one(0054700),        one(0177700),        "$s", m68000up },
  2113.  
  2114. {"stop",    one(0047162),        one(0177777),        "#w", m68000up },
  2115.  
  2116. {"subal",    one(0110700),        one(0170700),        "*lAd", m68000up },
  2117. {"subaw",    one(0110300),        one(0170700),        "*wAd", m68000up },
  2118. {"subb",    one(0050400),        one(0170700),        "Qd%s", m68000up },    /* subq written as sub */
  2119. {"subb",    one(0002000),        one(0177700),        "#b$s", m68000up },    /* subi written as sub */
  2120. {"subb",    one(0110000),        one(0170700),        ";bDd", m68000up },    /* subb ? ?,    Dd */
  2121. {"subb",    one(0110400),        one(0170700),        "Dd~s", m68000up },    /* subb Dd,    ? ? */
  2122.  
  2123. {"subib",    one(0002000),        one(0177700),        "#b$s", m68000up },
  2124. {"subil",    one(0002200),        one(0177700),        "#l$s", m68000up },
  2125. {"subiw",    one(0002100),        one(0177700),        "#w$s", m68000up },
  2126. {"subl",    one(0050600),        one(0170700),        "Qd%s", m68000up },
  2127. {"subl",    one(0002200),        one(0177700),        "#l$s", m68000up },
  2128. {"subl",    one(0110700),        one(0170700),        "*lAd", m68000up },
  2129. {"subl",    one(0110200),        one(0170700),        "*lDd", m68000up },
  2130. {"subl",    one(0110600),        one(0170700),        "Dd~s", m68000up },
  2131. {"subqb",    one(0050400),        one(0170700),        "Qd%s", m68000up },
  2132. #ifndef MIT_SYNTAX_ONLY
  2133. {"subqb",    one(0002000),        one(0177700),        "#b$s", m68000up }, /* FIXNIEL: sub instead of subq because too many frags */
  2134. #endif
  2135. {"subql",    one(0050600),        one(0170700),        "Qd%s", m68000up },
  2136. #ifndef MIT_SYNTAX_ONLY
  2137. {"subql",    one(0002200),        one(0177700),        "#l$s", m68000up }, /* FIXNIEL: sub instead of subq because too many frags */
  2138. #endif
  2139. {"subqw",    one(0050500),        one(0170700),        "Qd%s", m68000up },
  2140. #ifndef MIT_SYNTAX_ONLY
  2141. {"subqw",    one(0002100),        one(0177700),        "#w$s", m68000up }, /* FIXNIEL: sub instead of subq because too many frags */
  2142. #endif
  2143. {"subw",    one(0050500),        one(0170700),        "Qd%s", m68000up },
  2144. {"subw",    one(0002100),        one(0177700),        "#w$s", m68000up },
  2145. {"subw",    one(0110100),        one(0170700),        "*wDd", m68000up },
  2146. {"subw",    one(0110300),        one(0170700),        "*wAd", m68000up },    /* suba written as sub */
  2147. {"subw",    one(0110500),        one(0170700),        "Dd~s", m68000up },
  2148. #ifndef NO_DEFAULT_SIZES
  2149. {"subi",    one(0002200),        one(0177700),        "#l$s", m68000up },
  2150. {"suba",    one(0110700),        one(0170700),        "*lAd", m68000up },
  2151. {"sub",    one(0050500),        one(0170700),        "Qd%s", m68000up },
  2152. {"sub",    one(0002100),        one(0177700),        "#w$s", m68000up },
  2153. {"sub",    one(0110100),        one(0170700),        "*wDd", m68000up },
  2154. {"sub",    one(0110300),        one(0170700),        "*wAd", m68000up },    /* suba written as sub */
  2155. {"sub",    one(0110500),        one(0170700),        "Dd~s", m68000up },
  2156. #endif
  2157.  
  2158. {"subxb",    one(0110400),        one(0170770),        "DsDd", m68000up },    /* subxb Ds,    Dd */
  2159. {"subxb",    one(0110410),        one(0170770),        "-s-d", m68000up },    /* subxb -(As),    -(Ad) */
  2160. {"subxl",    one(0110600),        one(0170770),        "DsDd", m68000up },
  2161. {"subxl",    one(0110610),        one(0170770),        "-s-d", m68000up },
  2162. {"subxw",    one(0110500),        one(0170770),        "DsDd", m68000up },
  2163. {"subxw",    one(0110510),        one(0170770),        "-s-d", m68000up },
  2164. #ifndef NO_DEFAULT_SIZES
  2165. {"subx",    one(0110500),        one(0170770),        "DsDd", m68000up },
  2166. {"subx",    one(0110510),        one(0170770),        "-s-d", m68000up },
  2167. #endif
  2168.  
  2169. {"swap",    one(0044100),        one(0177770),        "Ds", m68000up },
  2170. #ifndef MIT_SYNTAX_ONLY
  2171. {"swapw",    one(0044100),        one(0177770),        "Ds", m68000up },
  2172. #endif
  2173.     
  2174. {"tas",        one(0045300),        one(0177700),        "$s", m68000up },
  2175.  
  2176. #define TBL1(name,signed,round,size) \
  2177.   {name, two(0174000, (signed<<11)|(round<<10)|(size<<6)|0000400),    two(0177700,0107777), "`sD1", cpu32 },\
  2178.   {name, two(0174000, (signed<<11)|(round<<10)|(size<<6)),        two(0177770,0107770), "DsD3D1", cpu32}
  2179. #define TBL(name1, name2, name3, s, r) \
  2180.   TBL1(name1, s, r, 0), TBL1(name2, s, r, 1), TBL1(name3, s, r, 2)
  2181. TBL("tblsb", "tblsw", "tblsl", 1, 1),
  2182. TBL("tblsnb", "tblsnw", "tblsnl", 1, 0),
  2183. TBL("tblub", "tbluw", "tblul", 0, 1),
  2184. TBL("tblunb", "tblunw", "tblunl", 0, 0),
  2185.  
  2186. #ifndef MIT_SYNTAX_ONLY
  2187. {"tpcc",    one(0047100),        one(0177760),        "Ts", m68000up },
  2188. #endif
  2189.  
  2190. {"trap",    one(0047100),        one(0177760),        "Ts", m68000up },
  2191.  
  2192.  
  2193. #ifndef MIT_SYNTAX_ONLY
  2194. {"tcc",        one(0052374),        one(0177777),        "", m68020up | cpu32 },
  2195. #endif
  2196.  
  2197. {"trapcc",    one(0052374),        one(0177777),        "", m68020up | cpu32 },
  2198. {"trapcs",    one(0052774),        one(0177777),        "", m68020up | cpu32 },
  2199. {"trapeq",    one(0053774),        one(0177777),        "", m68020up | cpu32 },
  2200. {"trapf",    one(0050774),        one(0177777),        "", m68020up | cpu32 },
  2201. {"trapge",    one(0056374),        one(0177777),        "", m68020up | cpu32 },
  2202. {"trapgt",    one(0057374),        one(0177777),        "", m68020up | cpu32 },
  2203. {"traphi",    one(0051374),        one(0177777),        "", m68020up | cpu32 },
  2204. {"traple",    one(0057774),        one(0177777),        "", m68020up | cpu32 },
  2205. {"trapls",    one(0051774),        one(0177777),        "", m68020up | cpu32 },
  2206. {"traplt",    one(0056774),        one(0177777),        "", m68020up | cpu32 },
  2207. {"trapmi",    one(0055774),        one(0177777),        "", m68020up | cpu32 },
  2208. {"trapne",    one(0053374),        one(0177777),        "", m68020up | cpu32 },
  2209. {"trappl",    one(0055374),        one(0177777),        "", m68020up | cpu32 },
  2210. {"trapt",    one(0050374),        one(0177777),        "", m68020up | cpu32 },
  2211. {"trapvc",    one(0054374),        one(0177777),        "", m68020up | cpu32 },
  2212. {"trapvs",    one(0054774),        one(0177777),        "", m68020up | cpu32 },
  2213.  
  2214. {"trapccw",    one(0052372),        one(0177777),    "#w", m68020up | cpu32 },
  2215. {"trapcsw",    one(0052772),        one(0177777),    "#w", m68020up | cpu32 },
  2216. {"trapeqw",    one(0053772),        one(0177777),    "#w", m68020up | cpu32 },
  2217. {"trapfw",    one(0050772),        one(0177777),    "#w", m68020up | cpu32 },
  2218. {"trapgew",    one(0056372),        one(0177777),    "#w", m68020up | cpu32 },
  2219. {"trapgtw",    one(0057372),        one(0177777),    "#w", m68020up | cpu32 },
  2220. {"traphiw",    one(0051372),        one(0177777),    "#w", m68020up | cpu32 },
  2221. {"traplew",    one(0057772),        one(0177777),    "#w", m68020up | cpu32 },
  2222. {"traplsw",    one(0051772),        one(0177777),    "#w", m68020up | cpu32 },
  2223. {"trapltw",    one(0056772),        one(0177777),    "#w", m68020up | cpu32 },
  2224. {"trapmiw",    one(0055772),        one(0177777),    "#w", m68020up | cpu32 },
  2225. {"trapnew",    one(0053372),        one(0177777),    "#w", m68020up | cpu32 },
  2226. {"trapplw",    one(0055372),        one(0177777),    "#w", m68020up | cpu32 },
  2227. {"traptw",    one(0050372),        one(0177777),    "#w", m68020up | cpu32 },
  2228. {"trapvcw",    one(0054372),        one(0177777),    "#w", m68020up | cpu32 },
  2229. {"trapvsw",    one(0054772),        one(0177777),    "#w", m68020up | cpu32 },
  2230.  
  2231. {"trapccl",    one(0052373),        one(0177777),    "#l", m68020up | cpu32 },
  2232. {"trapcsl",    one(0052773),        one(0177777),    "#l", m68020up | cpu32 },
  2233. {"trapeql",    one(0053773),        one(0177777),    "#l", m68020up | cpu32 },
  2234. {"trapfl",    one(0050773),        one(0177777),    "#l", m68020up | cpu32 },
  2235. {"trapgel",    one(0056373),        one(0177777),    "#l", m68020up | cpu32 },
  2236. {"trapgtl",    one(0057373),        one(0177777),    "#l", m68020up | cpu32 },
  2237. {"traphil",    one(0051373),        one(0177777),    "#l", m68020up | cpu32 },
  2238. {"traplel",    one(0057773),        one(0177777),    "#l", m68020up | cpu32 },
  2239. {"traplsl",    one(0051773),        one(0177777),    "#l", m68020up | cpu32 },
  2240. {"trapltl",    one(0056773),        one(0177777),    "#l", m68020up | cpu32 },
  2241. {"trapmil",    one(0055773),        one(0177777),    "#l", m68020up | cpu32 },
  2242. {"trapnel",    one(0053373),        one(0177777),    "#l", m68020up | cpu32 },
  2243. {"trappll",    one(0055373),        one(0177777),    "#l", m68020up | cpu32 },
  2244. {"traptl",    one(0050373),        one(0177777),    "#l", m68020up | cpu32 },
  2245. {"trapvcl",    one(0054373),        one(0177777),    "#l", m68020up | cpu32 },
  2246. {"trapvsl",    one(0054773),        one(0177777),    "#l", m68020up | cpu32 },
  2247.  
  2248. {"trapv",    one(0047166),        one(0177777),        "", m68000up },
  2249.  
  2250.  
  2251. {"tstb",    one(0045000),        one(0177700),        ";b", m68000up },
  2252. {"tstw",    one(0045100),        one(0177700),        "*w", m68000up },
  2253. {"tstl",    one(0045200),        one(0177700),        "*l", m68000up },
  2254. #ifndef NO_DEFAULT_SIZES
  2255. {"tst",        one(0045200),        one(0177700),        "*l", m68000up },
  2256. #endif
  2257.  
  2258. {"unlk",    one(0047130),        one(0177770),        "As", m68000up },
  2259. {"unpk",    one(0100600),        one(0170770),        "DsDd#w", m68020up },
  2260. {"unpk",    one(0100610),        one(0170770),        "-s-d#w", m68020up },
  2261.  
  2262. /* Variable-sized branches */
  2263.  
  2264. {"jbsr",    one(0060400),        one(0177400),        "Bg", m68000up },
  2265. {"jbsr",    one(0047200),        one(0177700),        "!s", m68000up },
  2266. {"jra",        one(0060000),        one(0177400),        "Bg", m68000up },
  2267. {"jra",        one(0047300),        one(0177700),        "!s", m68000up },
  2268.  
  2269. #ifndef MIT_SYNTAX_ONLY
  2270. {"jbra",    one(0060000),        one(0177400),        "Bg", m68000up },
  2271. {"jbra",    one(0047300),        one(0177700),        "!s", m68000up },
  2272. #endif
  2273.  
  2274. {"jhi",        one(0061000),        one(0177400),        "Bg", m68000up },
  2275. {"jls",        one(0061400),        one(0177400),        "Bg", m68000up },
  2276. {"jcc",        one(0062000),        one(0177400),        "Bg", m68000up },
  2277. {"jcs",        one(0062400),        one(0177400),        "Bg", m68000up },
  2278. {"jne",        one(0063000),        one(0177400),        "Bg", m68000up },
  2279. {"jeq",        one(0063400),        one(0177400),        "Bg", m68000up },
  2280. {"jvc",        one(0064000),        one(0177400),        "Bg", m68000up },
  2281. {"jvs",        one(0064400),        one(0177400),        "Bg", m68000up },
  2282. {"jpl",        one(0065000),        one(0177400),        "Bg", m68000up },
  2283. {"jmi",        one(0065400),        one(0177400),        "Bg", m68000up },
  2284. {"jge",        one(0066000),        one(0177400),        "Bg", m68000up },
  2285. {"jlt",        one(0066400),        one(0177400),        "Bg", m68000up },
  2286. {"jgt",        one(0067000),        one(0177400),        "Bg", m68000up },
  2287. {"jle",        one(0067400),        one(0177400),        "Bg", m68000up },
  2288.  
  2289.  
  2290. #ifndef MIT_SYNTAX_ONLY
  2291. /* Aliases:  jbCC is the same as jCC */
  2292. {"jbhi",        one(0061000),        one(0177400),        "Bg", m68000up },
  2293. {"jbls",        one(0061400),        one(0177400),        "Bg", m68000up },
  2294. {"jbcc",        one(0062000),        one(0177400),        "Bg", m68000up },
  2295. {"jbcs",        one(0062400),        one(0177400),        "Bg", m68000up },
  2296. {"jbne",        one(0063000),        one(0177400),        "Bg", m68000up },
  2297. {"jbeq",        one(0063400),        one(0177400),        "Bg", m68000up },
  2298. {"jbvc",        one(0064000),        one(0177400),        "Bg", m68000up },
  2299. {"jbvs",        one(0064400),        one(0177400),        "Bg", m68000up },
  2300. {"jbpl",        one(0065000),        one(0177400),        "Bg", m68000up },
  2301. {"jbmi",        one(0065400),        one(0177400),        "Bg", m68000up },
  2302. {"jbge",        one(0066000),        one(0177400),        "Bg", m68000up },
  2303. {"jblt",        one(0066400),        one(0177400),        "Bg", m68000up },
  2304. {"jbgt",        one(0067000),        one(0177400),        "Bg", m68000up },
  2305. {"jble",        one(0067400),        one(0177400),        "Bg", m68000up },
  2306. #endif /* MOTOROLA_SYNTAX */
  2307.  
  2308. /* aliases */
  2309.  
  2310. #ifndef MIT_SYNTAX_ONLY
  2311. {"move",    one(0030000),        one(0170000),        "*w$d", m68000up },
  2312. {"move",    one(0030100),        one(0170700),        "*wAd", m68000up },    /* mova,    written as mov */
  2313. {"move",    one(0040300),        one(0177700),        "Ss$s", m68000up },    /* Move from sr */
  2314. {"move",    one(0041300),        one(0177700),        "Cs$s", m68010up },    /* Move from ccr */
  2315. {"move",    one(0042300),        one(0177700),        ";wCd", m68000up },    /* mov to ccr */
  2316. {"move",    one(0043300),        one(0177700),        ";wSd", m68000up },    /* mov to sr */
  2317.  
  2318.  
  2319. {"move",    one(0020000),        one(0170000),        "*l$d", m68000up },
  2320. {"move",    one(0020100),        one(0170700),        "*lAd", m68000up },
  2321. {"move",    one(0070000),        one(0170400),        "MsDd", m68000up },    /* movq written as mov */
  2322. {"move",    one(0047140),        one(0177770),        "AsUd", m68000up },    /* mov to USP */
  2323. {"move",    one(0047150),        one(0177770),        "UdAs", m68000up },    /* mov from USP */
  2324. #endif
  2325.  
  2326.  
  2327. {"movql",    one(0070000),        one(0170400),        "MsDd", m68000up },
  2328. #ifndef MIT_SYNTAX_ONLY
  2329. {"movql",    one(0020000),        one(0170000),        "*l$d", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  2330. {"movql",    one(0020100),        one(0170700),        "*lAd", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  2331. {"movql",    one(0047140),        one(0177770),        "AsUd", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  2332. {"movql",    one(0047150),        one(0177770),        "UdAs", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  2333. #endif
  2334. {"moveql",    one(0070000),        one(0170400),        "MsDd", m68000up },
  2335. #ifndef MIT_SYNTAX_ONLY
  2336. {"moveql",    one(0020000),        one(0170000),        "*l$d", m68000up }, 
  2337. {"moveql",    one(0020100),        one(0170700),        "*lAd", m68000up }, 
  2338. {"moveql",    one(0047140),        one(0177770),        "AsUd", m68000up }, 
  2339. {"moveql",    one(0047150),        one(0177770),        "UdAs", m68000up }, 
  2340.  
  2341.  
  2342. #endif
  2343. {"moval",    one(0020100),        one(0170700),        "*lAd", m68000up },
  2344. {"movaw",    one(0030100),        one(0170700),        "*wAd", m68000up },
  2345. {"movb",    one(0010000),        one(0170000),        ";b$d", m68000up },    /* mov */
  2346.  
  2347. {"movl",    one(0070000),        one(0170400),        "MsDd", m68000up },    /* movq written as mov */
  2348. {"movl",    one(0020000),        one(0170000),        "*l$d", m68000up },
  2349. {"movl",    one(0020100),        one(0170700),        "*lAd", m68000up },
  2350. {"movl",    one(0047140),        one(0177770),        "AsUd", m68000up },    /* mov to USP */
  2351. {"movl",    one(0047150),        one(0177770),        "UdAs", m68000up },    /* mov from USP */
  2352.  
  2353. {"movc",    one(0047173),        one(0177777),        "R1Jj", m68010up },
  2354. {"movc",    one(0047173),        one(0177777),        "R1#j", m68010up },
  2355. {"movc",    one(0047172),        one(0177777),        "JjR1", m68010up },
  2356. {"movc",    one(0047172),        one(0177777),        "#jR1", m68010up },
  2357. {"movml",    one(0044300),        one(0177700),        "#w&s", m68000up },    /* movm reg to mem. */
  2358. {"movml",    one(0044340),        one(0177770),        "#w-s", m68000up },    /* movm reg to autodecrement. */
  2359. {"movml",    one(0046300),        one(0177700),        "!s#w", m68000up },    /* movm mem to reg. */
  2360. {"movml",    one(0046330),        one(0177770),        "+s#w", m68000up },    /* movm autoinc to reg. */
  2361. {"movml",    one(0044300),        one(0177700),        "Lw&s", m68000up },    /* movm reg to mem. */
  2362. {"movml",    one(0044340),        one(0177770),        "lw-s", m68000up },    /* movm reg to autodecrement. */
  2363. {"movml",    one(0046300),        one(0177700),        "!sLw", m68000up },    /* movm mem to reg. */
  2364. {"movml",    one(0046330),        one(0177770),        "+sLw", m68000up },    /* movm autoinc to reg. */
  2365. {"movmw",    one(0044200),        one(0177700),        "#w&s", m68000up },    /* movm reg to mem. */
  2366. {"movmw",    one(0044240),        one(0177770),        "#w-s", m68000up },    /* movm reg to autodecrement. */
  2367. {"movmw",    one(0046200),        one(0177700),        "!s#w", m68000up },    /* movm mem to reg. */
  2368. {"movmw",    one(0046230),        one(0177770),        "+s#w", m68000up },    /* movm autoinc to reg. */
  2369. {"movmw",    one(0044200),        one(0177700),        "Lw&s", m68000up },    /* movm reg to mem. */
  2370. {"movmw",    one(0044240),        one(0177770),        "lw-s", m68000up },    /* movm reg to autodecrement. */
  2371. {"movmw",    one(0046200),        one(0177700),        "!sLw", m68000up },    /* movm mem to reg. */
  2372. {"movmw",    one(0046230),        one(0177770),        "+sLw", m68000up },    /* movm autoinc to reg. */
  2373. {"movpl",    one(0000510),        one(0170770),        "dsDd", m68000up },    /* memory to register */
  2374. {"movpl",    one(0000710),        one(0170770),        "Ddds", m68000up },    /* register to memory */
  2375. {"movpw",    one(0000410),        one(0170770),        "dsDd", m68000up },    /* memory to register */
  2376. {"movpw",    one(0000610),        one(0170770),        "Ddds", m68000up },    /* register to memory */
  2377. {"movq",    one(0070000),        one(0170400),        "MsDd", m68000up },
  2378.  
  2379. #ifndef MIT_SYNTAX_ONLY
  2380. {"movq",    one(0020000),        one(0170000),        "*l$d", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  2381. {"movq",    one(0020100),        one(0170700),        "*lAd", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  2382. {"movq",    one(0047140),        one(0177770),        "AsUd", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  2383. {"movq",    one(0047150),        one(0177770),        "UdAs", m68000up }, /* FIXNIEL: move instead of movw because too many frags */
  2384. #endif
  2385.  
  2386. {"movw",    one(0030000),        one(0170000),        "*w$d", m68000up },
  2387. {"movw",    one(0030100),        one(0170700),        "*wAd", m68000up },    /* mova,    written as mov */
  2388. {"movw",    one(0040300),        one(0177700),        "Ss$s", m68000up },    /* Move from sr */
  2389. {"movw",    one(0041300),        one(0177700),        "Cs$s", m68010up },    /* Move from ccr */
  2390. {"movw",    one(0042300),        one(0177700),        ";wCd", m68000up },    /* mov to ccr */
  2391. {"movw",    one(0043300),        one(0177700),        ";wSd", m68000up },    /* mov to sr */
  2392. {"movsb",    two(0007000, 0),    two(0177700, 07777),    "~sR1", m68010up },
  2393. {"movsb",    two(0007000, 04000),    two(0177700, 07777),    "R1~s", m68010up },
  2394. {"movsl",    two(0007200, 0),    two(0177700, 07777),    "~sR1", m68010up },
  2395. {"movsl",    two(0007200, 04000),    two(0177700, 07777),    "R1~s", m68010up },
  2396. {"movsw",    two(0007100, 0),    two(0177700, 07777),    "~sR1", m68010up },
  2397. {"movsw",    two(0007100, 04000),    two(0177700, 07777),    "R1~s", m68010up },
  2398.  
  2399. #ifndef MIT_SYNTAX_ONLY
  2400.  
  2401. {"movecl",    one(0047173),        one(0177777),        "R1Jj", m68010up },
  2402. {"movecl",    one(0047173),        one(0177777),        "R1#j", m68010up },
  2403. {"movecl",    one(0047172),        one(0177777),        "JjR1", m68010up },
  2404. {"movecl",    one(0047172),        one(0177777),        "#jR1", m68010up },
  2405.  
  2406. #endif
  2407.  
  2408. };
  2409.  
  2410. int numopcodes = 
  2411.     (sizeof(m68k_opcodes) + AND_OTHER_PART)/sizeof(m68k_opcodes[0]);
  2412.  
  2413. struct m68k_opcode *endop = m68k_opcodes +
  2414.     (sizeof(m68k_opcodes) + AND_OTHER_PART)/sizeof(m68k_opcodes[0]);
  2415. #endif
  2416.  
  2417. /*
  2418.  * Local Variables:
  2419.  * fill-column: 131
  2420.  * End:
  2421.  */
  2422.  
  2423. /* end of m68k-opcode.h */
  2424.