亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? opcodes.h

?? gdb for adsp develop
?? H
字號:
/* @(#)opcodes.h	5.19 93/08/10 17:49:11, Srini,AMD *//****************************************************************************** * Copyright 1991 Advanced Micro Devices, Inc. * * This software is the property of Advanced Micro Devices, Inc  (AMD)  which * specifically  grants the user the right to modify, use and distribute this * software provided this notice is not removed or altered.  All other rights * are reserved by AMD. * * AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS * SOFTWARE.  IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL * DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR * USE OF THIS SOFTWARE. * * So that all may benefit from your experience, please report  any  problems * or  suggestions about this software to the 29K Technical Support Center at * 800-29-29-AMD (800-292-9263) in the USA, or 0800-89-1131  in  the  UK,  or * 0031-11-1129 in Japan, toll free.  The direct dial number is 512-462-4118. * * Advanced Micro Devices, Inc. * 29K Support Products * Mail Stop 573 * 5900 E. Ben White Blvd. * Austin, TX 78741 * 800-292-9263 ***************************************************************************** *      Engineer: Srini Subramanian. ***************************************************************************** **  **       This file gives the definitions of opcodes in the Am29000 **       processor. ** **       This file defines the opcodes used in the Am29000 processor. **       The opcodes here are defined as the first eight-bit field in **       the (32-bit) instruction.  Note that many instructions are **       defined with a "mode bit" in the least significant bit of the **       opcode field.  In this definition, instructions with **       different mode bits are treated as different instructions. **       This allows consistent processing of eight bit opcodes. ** **       For instance, AND with the mode bit set to zero (M=0) defines **       the third eight bit field in the instruction word as being **       the content of a register.  When M=1 the content of the third **       field is taken to be an immediate value, zero-extended to 32 **       bits. ** **       The #define statements below will treat AND as two different **       instructions called AND0 and AND1.  As you might suspect, **       AND0 is describes the opcode AND when M=0 and AND1 describes **       the opcode AND where M=1. ** **       Note1: Wherever the name of an opcode as listed in the User's **              Manual confilcts with either a reserved keyword, or a **              previously defined opcode, "_op" is appended to the **              name.  ** **       Note2: These opcodes are sorted in numerical order. ** **       Note3: Opcodes are broken up into groups of 16 (16#n0# to **              16#nF#). ** **       Note4: When no opcode is defined, a variable of the name **              illegal_nn is declared in that space.  The value of **              "nn" is the number of the opcode in hexadecimal. ** ***************************************************************************** */ #ifndef	_OPCODES_H_INCLUDED_#define	_OPCODES_H_INCLUDED_#define   ILLEGAL_00   0x00#define   CONSTN       0x01#define   CONSTH       0x02#define   CONST        0x03#define   MTSRIM       0x04#define   CONSTHZ      0x05#define   LOADL0       0x06#define   LOADL1       0x07#define   CLZ0         0x08#define   CLZ1         0x09#define   EXBYTE0      0x0A#define   EXBYTE1      0x0B#define   INBYTE0      0x0C#define   INBYTE1      0x0D#define   STOREL0      0x0E#define   STOREL1      0x0F#define   ADDS0        0x10#define   ADDS1        0x11#define   ADDU0        0x12#define   ADDU1        0x13#define   ADD0         0x14#define   ADD1         0x15#define   LOAD0        0x16#define   LOAD1        0x17#define   ADDCS0       0x18#define   ADDCS1       0x19#define   ADDCU0       0x1A#define   ADDCU1       0x1B#define   ADDC0        0x1C#define   ADDC1        0x1D#define   STORE0       0x1E#define   STORE1       0x1F#define   SUBS0        0x20#define   SUBS1        0x21#define   SUBU0        0x22#define   SUBU1        0x23#define   SUB0         0x24#define   SUB1         0x25#define   LOADSET0     0x26#define   LOADSET1     0x27#define   SUBCS0       0x28#define   SUBCS1       0x29#define   SUBCU0       0x2A#define   SUBCU1       0x2B#define   SUBC0        0x2C#define   SUBC1        0x2D#define   CPBYTE0      0x2E#define   CPBYTE1      0x2F#define   SUBRS0       0x30#define   SUBRS1       0x31#define   SUBRU0       0x32#define   SUBRU1       0x33#define   SUBR0        0x34#define   SUBR1        0x35#define   LOADM0       0x36#define   LOADM1       0x37#define   SUBRCS0      0x38#define   SUBRCS1      0x39#define   SUBRCU0      0x3A#define   SUBRCU1      0x3B#define   SUBRC0       0x3C#define   SUBRC1       0x3D#define   STOREM0      0x3E#define   STOREM1      0x3F#define   CPLT0        0x40#define   CPLT1        0x41#define   CPLTU0       0x42#define   CPLTU1       0x43#define   CPLE0        0x44#define   CPLE1        0x45#define   CPLEU0       0x46#define   CPLEU1       0x47#define   CPGT0        0x48#define   CPGT1        0x49#define   CPGTU0       0x4A#define   CPGTU1       0x4B#define   CPGE0        0x4C#define   CPGE1        0x4D#define   CPGEU0       0x4E#define   CPGEU1       0x4F#define   ASLT0        0x50#define   ASLT1        0x51#define   ASLTU0       0x52#define   ASLTU1       0x53#define   ASLE0        0x54#define   ASLE1        0x55#define   ASLEU0       0x56#define   ASLEU1       0x57#define   ASGT0        0x58#define   ASGT1        0x59#define   ASGTU0       0x5A#define   ASGTU1       0x5B#define   ASGE0        0x5C#define   ASGE1        0x5D#define   ASGEU0       0x5E#define   ASGEU1       0x5F#define   CPEQ0        0x60#define   CPEQ1        0x61#define   CPNEQ0       0x62#define   CPNEQ1       0x63#define   MUL0         0x64#define   MUL1         0x65#define   MULL0        0x66#define   MULL1        0x67#define   DIV0_OP0     0x68#define   DIV0_OP1     0x69#define   DIV_OP0      0x6A#define   DIV_OP1      0x6B#define   DIVL0        0x6C#define   DIVL1        0x6D#define   DIVREM0      0x6E#define   DIVREM1      0x6F#define   ASEQ0        0x70#define   ASEQ1        0x71#define   ASNEQ0       0x72#define   ASNEQ1       0x73#define   MULU0        0x74#define   MULU1        0x75#define   ILLEGAL_76   0x76#define   ILLEGAL_77   0x77#define   INHW0        0x78#define   INHW1        0x79#define   EXTRACT0     0x7A#define   EXTRACT1     0x7B#define   EXHW0        0x7C#define   EXHW1        0x7D#define   EXHWS        0x7E#define   ILLEGAL_7F   0x7F#define   SLL0         0x80#define   SLL1         0x81#define   SRL0         0x82#define   SRL1         0x83#define   ILLEGAL_84   0x84#define   ILLEGAL_85   0x85#define   SRA0         0x86#define   SRA1         0x87#define   IRET         0x88#define   HALT_OP      0x89#define   ILLEGAL_8A   0x8A#define   ILLEGAL_8B   0x8B#define   IRETINV      0x8C#define   ILLEGAL_8D   0x8D#define   ILLEGAL_8E   0x8E#define   ILLEGAL_8F   0x8F#define   AND_OP0      0x90#define   AND_OP1      0x91#define   OR_OP0       0x92#define   OR_OP1       0x93#define   XOR_OP0      0x94#define   XOR_OP1      0x95#define   XNOR0        0x96#define   XNOR1        0x97#define   NOR0         0x98#define   NOR1         0x99#define   NAND0        0x9A#define   NAND1        0x9B#define   ANDN0        0x9C#define   ANDN1        0x9D#define   SETIP        0x9E#define   INV          0x9F#define   JMP0         0xA0#define   JMP1         0xA1#define   ILLEGAL_A2   0xA2#define   ILLEGAL_A3   0xA3#define   JMPF0        0xA4#define   JMPF1        0xA5#define   ILLEGAL_A6   0xA6#define   ILLEGAL_A7   0xA7#define   CALL0        0xA8#define   CALL1        0xA9#define   ORN_OP0   	0xAA#define   ORN_OP1   	0xAB#define   JMPT0        0xAC#define   JMPT1        0xAD#define   ILLEGAL_AE   0xAE#define   ILLEGAL_AF   0xAF#define   ILLEGAL_B0   0xB0#define   ILLEGAL_B1   0xB1#define   ILLEGAL_B2   0xB2#define   ILLEGAL_B3   0xB3#define   JMPFDEC0     0xB4#define   JMPFDEC1     0xB5#define   MFTLB        0xB6#define   ILLEGAL_B7   0xB7#define   ILLEGAL_B8   0xB8#define   ILLEGAL_B9   0xB9#define   ILLEGAL_BA   0xBA#define   ILLEGAL_BB   0xBB#define   ILLEGAL_BC   0xBC#define   ILLEGAL_BD   0xBD#define   MTTLB        0xBE#define   ILLEGAL_BF   0xBF#define   JMPI         0xC0#define   ILLEGAL_C1   0xC1#define   ILLEGAL_C2   0xC2#define   ILLEGAL_C3   0xC3#define   JMPFI        0xC4#define   ILLEGAL_C5   0xC5#define   MFSR         0xC6#define   ILLEGAL_C7   0xC7#define   CALLI        0xC8#define   ILLEGAL_C9   0xC9#define   ILLEGAL_CA   0xCA#define   ILLEGAL_CB   0xCB#define   JMPTI        0xCC#define   ILLEGAL_CD   0xCD#define   MTSR         0xCE#define   ILLEGAL_CF   0xCF#define   ILLEGAL_D0   0xD0#define   ILLEGAL_D1   0xD1#define   ILLEGAL_D2   0xD2#define   ILLEGAL_D3   0xD3#define   ILLEGAL_D4   0xD4#define   ILLEGAL_D5   0xD5#define   ILLEGAL_D6   0xD6#define   EMULATE      0xD7#define   ILLEGAL_D8   0xD8#define   ILLEGAL_D9   0xD9#define   ILLEGAL_DA   0xDA#define   ILLEGAL_DB   0xDB#define   ILLEGAL_DC   0xDC#define   ILLEGAL_DD   0xDD#define   MULTM        0xDE#define   MULTMU       0xDF#define   MULTIPLY     0xE0#define   DIVIDE       0xE1#define   MULTIPLU     0xE2#define   DIVIDU       0xE3#define   CONVERT      0xE4#define   SQRT         0xE5#define   CLASS        0xE6#define   ILLEGAL_E7   0xE7#define   ILLEGAL_E8   0xE8#define   ILLEGAL_E9   0xE9#define   FEQ          0xEA#define   DEQ          0xEB#define   FGT          0xEC#define   DGT          0xED#define   FGE          0xEE#define   DGE          0xEF#define   FADD         0xF0#define   DADD         0xF1#define   FSUB         0xF2#define   DSUB         0xF3#define   FMUL         0xF4#define   DMUL         0xF5#define   FDIV         0xF6#define   DDIV         0xF7#define   ILLEGAL_F8   0xF8#define   FDMUL        0xF9#define   ILLEGAL_FA   0xFA#define   ILLEGAL_FB   0xFB#define   ILLEGAL_FC   0xFC#define   ILLEGAL_FD   0xFD#define   ILLEGAL_FE   0xFE#define   ILLEGAL_FF   0xFF/* External declarations of variable defined in opcodes.c */extern char 	*opcode_name[];extern char 	*reg[];extern char 	*spreg[];#endif  /* _OPCODES_H_INCLUDED_ */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩免费视频| av欧美精品.com| 一区二区三区国产精品| 精品国产伦一区二区三区免费| 在线观看国产91| 在线欧美日韩国产| 成人avav影音| 99麻豆久久久国产精品免费优播| 欧美中文字幕亚洲一区二区va在线| 国产九色sp调教91| 国产精品一区久久久久| 激情深爱一区二区| 国产精品综合二区| 成人免费精品视频| 在线观看一区二区视频| 日本大香伊一区二区三区| 色先锋aa成人| 51久久夜色精品国产麻豆| 91精品在线免费观看| 日韩精品一区二区三区视频在线观看| 日韩一区二区在线观看| 久久综合久久鬼色中文字| 国产日韩精品一区| 最新不卡av在线| 亚洲成人tv网| 国产精品中文有码| 色狠狠桃花综合| 欧美一二三在线| 中文字幕乱码久久午夜不卡 | 另类调教123区| 国产99久久精品| 欧美日韩中字一区| 欧美精品aⅴ在线视频| 日韩视频免费观看高清在线视频| 国产日韩精品一区二区三区| 亚洲综合图片区| 国产精品自产自拍| 色呦呦一区二区三区| 欧美一区二区成人| 中文字幕日韩精品一区 | 欧美成人国产一区二区| 国产精品久久久久影院老司| 丝袜美腿亚洲综合| 99国产精品99久久久久久| 4438成人网| 亚洲欧美一区二区三区久本道91| 美女国产一区二区三区| 91啦中文在线观看| 久久亚区不卡日本| 青青国产91久久久久久| 91网站视频在线观看| 国产亚洲一区二区在线观看| 图片区小说区国产精品视频 | 亚洲人午夜精品天堂一二香蕉| 天堂久久久久va久久久久| 成人99免费视频| 国产偷国产偷亚洲高清人白洁| 亚洲线精品一区二区三区| 成人sese在线| 久久久久成人黄色影片| 男人的j进女人的j一区| 色婷婷精品大在线视频| 国产精品沙发午睡系列990531| 久久精品国产99国产精品| 欧美日韩亚洲综合| 亚洲精品欧美激情| av男人天堂一区| 国产精品美女久久久久久久久久久| 蜜臀av一区二区在线观看| 欧美日韩国产另类不卡| 亚洲一二三区不卡| 日本道免费精品一区二区三区| 亚洲欧洲日韩综合一区二区| 粉嫩在线一区二区三区视频| 久久午夜老司机| 久久97超碰色| 亚洲精品一区二区三区蜜桃下载| 美女高潮久久久| 欧美电影免费观看高清完整版在线观看| 午夜日韩在线电影| 欧美精品1区2区| 免费高清在线视频一区·| 4hu四虎永久在线影院成人| 男人的天堂久久精品| 日韩欧美一区中文| 精品中文av资源站在线观看| 26uuu成人网一区二区三区| 午夜精品福利一区二区蜜股av| 欧美羞羞免费网站| 视频一区二区不卡| 精品伦理精品一区| 国产91对白在线观看九色| 欧美激情一区二区三区在线| 99久久夜色精品国产网站| 亚洲免费在线播放| 欧美男生操女生| 国产毛片精品视频| 国产精品成人在线观看| 欧美性做爰猛烈叫床潮| 卡一卡二国产精品| 国产精品视频观看| 欧美日韩一区二区欧美激情 | 日韩精品资源二区在线| 国产精品自拍av| 一区二区三区四区中文字幕| 欧美一区二区在线看| 国产黄人亚洲片| 一区二区激情视频| 精品入口麻豆88视频| av激情综合网| 日本最新不卡在线| 国产精品午夜在线| 777午夜精品视频在线播放| 国产成人夜色高潮福利影视| 亚洲精品视频一区二区| 精品播放一区二区| 色综合视频在线观看| 蜜臀精品久久久久久蜜臀| 亚洲视频1区2区| 精品国产乱码久久久久久浪潮 | 奇米一区二区三区| 国产精品久久久久aaaa| 91精品国产一区二区三区香蕉| 国产91丝袜在线观看| 日韩高清在线一区| 国产精品久久久久一区二区三区| 欧美日韩成人在线| 91美女福利视频| 国产不卡在线播放| 日本一道高清亚洲日美韩| 亚洲欧美日韩人成在线播放| 欧美成人精品1314www| 欧美美女一区二区在线观看| 99久久婷婷国产| 成人性生交大合| 国产又黄又大久久| 日日摸夜夜添夜夜添亚洲女人| 成人欧美一区二区三区在线播放| 精品成人佐山爱一区二区| 欧美日韩激情在线| 日本精品视频一区二区| 成人小视频免费在线观看| 国产综合久久久久久久久久久久| 天天爽夜夜爽夜夜爽精品视频| 亚洲欧美激情小说另类| 国产精品色婷婷久久58| 久久久无码精品亚洲日韩按摩| 91精品国产麻豆国产自产在线| 日本道精品一区二区三区| 91无套直看片红桃| 色婷婷一区二区三区四区| bt欧美亚洲午夜电影天堂| 成人午夜精品在线| 国产成人丝袜美腿| 国产不卡在线一区| 成人av网址在线| 成人av影视在线观看| 97久久精品人人做人人爽50路| 春色校园综合激情亚洲| www.久久精品| 91蜜桃婷婷狠狠久久综合9色| 色偷偷88欧美精品久久久 | 亚洲国产人成综合网站| 亚洲一二三四在线观看| 午夜视频在线观看一区二区| 日韩黄色一级片| 国内精品国产成人国产三级粉色| 黑人巨大精品欧美黑白配亚洲| 国产成人免费av在线| 成人黄色av电影| 91成人网在线| 欧美一区二区三区啪啪| 精品美女被调教视频大全网站| 久久亚洲影视婷婷| 亚洲免费视频成人| 天天综合日日夜夜精品| 国产精品一区二区三区乱码| 国产宾馆实践打屁股91| 91国偷自产一区二区使用方法| 欧美美女一区二区三区| 久久久久青草大香线综合精品| 国产精品国产三级国产a| 亚洲乱码中文字幕综合| 日韩**一区毛片| 国产v综合v亚洲欧| 欧美色区777第一页| 久久这里只有精品6| 亚洲乱码精品一二三四区日韩在线| 天堂va蜜桃一区二区三区漫画版 | 一本一本大道香蕉久在线精品 | 99在线精品一区二区三区| 欧美午夜一区二区三区| 久久影院视频免费| 亚洲美女免费视频| 久久国产精品99久久久久久老狼| 99精品国产热久久91蜜凸| 日韩久久一区二区| 激情深爱一区二区| 欧美中文字幕一区| 中文字幕在线一区二区三区|