home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / as / m68k-opcode.h < prev    next >
C/C++ Source or Header  |  1992-02-21  |  116KB  |  2,236 lines

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