home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / debug / gdb / include / opcode / m68k.h < prev   
C/C++ Source or Header  |  1995-07-28  |  136KB  |  2,419 lines

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