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

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

?? masks860.h

?? MPC860SAR源代碼
?? H
?? 第 1 頁 / 共 5 頁
字號:

/*------------------------------------------------------------------------*
 *  FILE:  MASKS860.H                                                     *
 *          															                 *
 *  DESCRIPTION:  Bit masks for MPC860 registers. Sequence of registers   *
 *                follows device memory map exactly. 					        *
 *																		                    * 
 *  REGISTERS NOT														                 *
 *  INCLUDED:      SWSR, SCCRK, PLPRCRK, RSRK, SDAR, SDMR, IDMR1, IDMR2,  *
 *				   TRR1-4, TCR1-4, TCN1-4, PSMR1, SCCE1, SCCM1, SCCS1,        *
 *                 PSMR2, PSMR3, SCCE3, SCCM3, SCCS3, PSMR4, SCCE4,	     *
 *                 SCCM4, SCCS4, SIRP				         			        *
 *																								  *
 *  Note: Look in the Protocol Specific section below first before        *
 *        determining that the above registers are not covered.           *
 *										    													  * 
 *																								  *
 *  HISTORY:  30 SEP 97  ecg  Created								  		        *
 *            17 NOV 97  jay  Modified                                    *
 *            09 JAN 98  ecg  Modified     								        *
 *------------------------------------------------------------------------*/

/*------------------------------------------------------------------------*
 *                           GENERAL PURPOSE MASKS			    		        *
 *------------------------------------------------------------------------*/
 
#define  ALL_ONES    0xFFFFFFFF


/*------------------------------------------------------------------------*
 *                              GENERAL SIU							           *
 *------------------------------------------------------------------------*/
                                                                            

/*----------------------------------------*
 * Module Configuration Register (SIUMCR) *
 *----------------------------------------*/

#define SIUMCR_EARB  0x80000000   /* External Arbitration */
#define SIUMCR_EARP  0x70000000   /* External Arbitration Req. Priority */
#define RESERVED1    0x0F000000   
#define SIUMCR_DSHW  0x00800000   /* Data Show Cycles */
#define SIUMCR_DBGC  0x00600000   /* Debug Pins Configuration */
#define SIUMCR_DBPC  0x00180000   /* Debug Port Pins Configuration */
#define RESERVED2    0x00040000       
#define SIUMCR_FRC   0x00020000   /* FRZ Pin configuration */
#define SIUMCR_DLK   0x00010000   /* Debug Register Lock */
#define SIUMCR_PNCS  0x00008000   /* Parity Enable Nonmemory Controller
                                      Regions */  
#define SIUMCR_OPAR  0x00004000   /* Odd Parity */
#define SIUMCR_DPC   0x00002000   /* Data Parity Pins Configuration */
#define SIUMCR_MPRE  0x00001000   /* Multiprocessors Reservation Enable */
#define SIUMCR_MLRC  0x00000C00   /* Multi-Level Reservation Control */
#define SIUMCR_AEME  0x00000200   /* Asynchronous External Master Enable */
#define SIUMCR_SEME  0x00000100   /* Synchronous External Master Enable */
#define SIUMCR_BSC   0x00000080   /* Byte Select Configuration */
#define SIUMCR_GB5E  0x00000040   /* GPL_B(5) Enable */
#define SIUMCR_B2DD  0x00000020   /* Bank 2 Double Drive */
#define SIUMCR_B3DD  0x00000010   /* Bank 3 Double Drive */
#define RESERVED3    0x0000000F        



/*------------------------------------------------------*
 * System Protection Control Register (SYPCR)           *
 *------------------------------------------------------*/

#define SYPCR_SWTC  0xFFFF0000     /* SoftWare Watchdog Timer Count */
#define SYPCR_BMT   0x0000FF00     /* Bus Monitor Timing */
#define SYPCR_BME   0x00000080     /* Bus Monitor Enable */
#define RESERVED4   0x00000070
#define SYPCR_SWF   0x00000008     /* Software Watchdog Freeze */
#define SYPCR_SWE   0x00000004     /* Software Watchdog Enable */
#define SYPCR_SWRI  0x00000002     /* Software Watchdog Reset/Interrupt 
                                       Select */
#define SYPCR_SWP   0x00000001     /* Software Watchdog Prescale */



/*-------------------------------------------------------------*
 * Software Service Register (SWSR)                            *
 *-------------------------------------------------------------*
 * NOTE: Bit masks are not provided for the Software Service   *
 *       Register (SWSR). The SWSR is the location to which    *
 *       the SWT servicing sequence is written. To prevent SWT *
 *       timeout, the user should write $556C followed by 	   *
 *       $AA93 to this register. The SWSR can be written at    *
 *       any time, but returns all zeros when read.            *
 *-------------------------------------------------------------*/ 



/*-------------------------------------*
 * Interrupt Pending Register (SIPEND) *
 *-------------------------------------*/

#define SIPEND_IRQ0  0x80000000
#define SIPEND_LVL0  0x40000000
#define SIPEND_IRQ1  0x20000000
#define SIPEND_LVL1  0x10000000
#define SIPEND_IRQ2  0x08000000
#define SIPEND_LVL2  0x04000000
#define SIPEND_IRQ3  0x02000000
#define SIPEND_LVL3  0x01000000
#define SIPEND_IRQ4  0x00800000
#define SIPEND_LVL4  0x00400000
#define SIPEND_IRQ5  0x00200000
#define SIPEND_LVL5  0x00100000
#define SIPEND_IRQ6  0x00080000
#define SIPEND_LVL6  0x00040000
#define SIPEND_IRQ7  0x00020000
#define SIPEND_LV7   0x00010000
#define RESERVED5    0x0000FFFF


/*-----------------------------------------*
 *   SIU Interrupt Mask Register (SIMASK)  *
 *-----------------------------------------*/

#define SIMASK_IRM0  0x80000000
#define SIMASK_LVM0  0x40000000
#define SIMASK_IRM1  0x20000000
#define SIMASK_LVM1  0x10000000
#define SIMASK_IRM2  0x08000000
#define SIMASK_LVM2  0x04000000
#define SIMASK_IRM3  0x02000000
#define SIMASK_LVM3  0x01000000
#define SIMASK_IRM4  0x00800000
#define SIMASK_LVM4  0x00400000
#define SIMASK_IRM5  0x00200000
#define SIMASK_LVM5  0x00100000
#define SIMASK_IRM6  0x00080000
#define SIMASK_LVM6  0x00040000
#define SIMASK_IRM7  0x00020000
#define SIMASK_LVM7  0x00010000
#define RESERVED6    0x0000FFFF



/*---------------*
 * SIEL Register *
 *---------------*/

#define SIEL_ED0   0x80000000      
#define SIEL_WM0   0x40000000
#define SIEL_ED1   0x20000000
#define SIEL_WM1   0x10000000
#define SIEL_ED2   0x08000000
#define SIEL_WM2   0x04000000
#define SIEL_ED3   0x02000000
#define SIEL_WM3   0x01000000
#define SIEL_ED4   0x00800000
#define SIEL_WM4   0x00400000
#define SIEL_ED5   0x00200000
#define SIEL_WM5   0x00100000
#define SIEL_ED6   0x00080000
#define SIEL_WM6   0x00040000
#define SIEL_ED7   0x00020000
#define SIEL_WM7   0x00010000
#define RESERVED7  0x0000FFFF



/*---------------------------------------*
 * SIU Interrupt Vector Register (SIVEC) *
 *---------------------------------------*/

#define SIVEC_INTCODE   0xFF000000  /* Interrupt Code */



/*---------------------------------------*
 * Transfer Error Status Register (TESR) *
 *---------------------------------------*/

#define RESERVED8  0xC000
#define TESR_IEXT  0x2000    /* Instruction External Transfer Error 
                                 Acknowledge */
#define TESR_IBM   0x1000    /* Instruction transfer Monitor Timeout */ 
#define TESR_IPB0  0x0800    /* Instruction Parity Error on Byte */
#define TESR_IPB1  0x0400    /* Instruction Parity Error on Byte */
#define TESR_IPB2  0x0200    /* Instruction Parity Error on Byte */
#define TESR_IPB3  0x0100    /* Instruction Parity Error on Byte */
#define RESERVED9  0x00C0   
#define TESR_DEXT  0x0020    /* Data External Transfer Error Acknowledge */
#define TESR_DBM   0x0010    /* Data Transfer Monitor Timeout */
#define TESR_DPB0  0x0008    /* Data Parity Error on Byte */
#define TESR_DPB1  0x0004    /* Data Parity Error on Byte */
#define TESR_DPB2  0x0002    /* Data Parity Error on Byte */
#define TESR_DPB3  0x0001    /* Data Parity Error on Byte */ 



/*------------------------------------*
 * SDMA Configuration Register (SDCR) *
 *------------------------------------*/

#define RESERVED10   0xFFFF8000    
#define SDCR_FRZ     0x00006000   /* Freeze */
#define RESERVED11   0x00001FF0
#define RESERVED12   0x000000C0
#define SDCR_RAID    0x00000003   /* RISC Controller Arbitration ID */




/*-------------------------------------------------------------------------*
 *                                  PCMCIA							       	   *
 *-------------------------------------------------------------------------*/
                                                                            

/*------------------------------------*
 * Interface Option Register 0 (POR0) *
 *------------------------------------*/

#define POR0_BSIZE  0xF8000000    /* PCMCIA Bank Size */
#define RESERVED13  0x07F00000	  
#define POR0_PSHT   0x000F0000    /* PCMCIA Strobe Hold Time */
#define POR0_PSST   0x0000F000    /* PCMCIA Strobe Set Up Time */
#define POR0_PSL    0x00000F80    /* PCMCIA Strobe Length */
#define POR0_PPS    0x00000040    /* PCMCIA Port Size */
#define POR0_PRS    0x00000038    /* PCMCIA Region Select */
#define POR0_PSLOT  0x00000004    /* PCMCIA Slot Identifier */
#define RESERVED14  0x00000002    /* Any write to this window will result
                                      in a bus error */
#define POR0_PV     0x00000001    /* PCMCIA Valid Bit */



/*------------------------------------*
 * Interface Option Register 1 (POR1) *
 *------------------------------------*/

#define POR1_BSIZE  0xF8000000    /* PCMCIA Bank Size */
#define RESERVED15  0x07F00000	  
#define POR1_PSHT   0x000F0000    /* PCMCIA Strobe Hold Time */
#define POR1_PSST   0x0000F000    /* PCMCIA Strobe Set Up Time */
#define POR1_PSL    0x00000F80    /* PCMCIA Strobe Length */
#define POR1_PPS    0x00000040    /* PCMCIA Port Size */
#define POR1_PRS    0x00000038    /* PCMCIA Region Select */
#define POR1_PSLOT  0x00000004    /* PCMCIA Slot Identifier */
#define RESERVED16  0x00000002    /* Any write to this window will result
                                      in a bus error */
#define POR1_PV     0x00000001    /* PCMCIA Valid Bit */



/*------------------------------------*
 * Interface Option Register 2 (POR2) *
 *------------------------------------*/

#define POR2_BSIZE  0xF8000000    /* PCMCIA Bank Size */
#define RESERVED17  0x07F00000	  
#define POR2_PSHT   0x000F0000    /* PCMCIA Strobe Hold Time */
#define POR2_PSST   0x0000F000    /* PCMCIA Strobe Set Up Time */
#define POR2_PSL    0x00000F80    /* PCMCIA Strobe Length */
#define POR2_PPS    0x00000040    /* PCMCIA Port Size */
#define POR2_PRS    0x00000038    /* PCMCIA Region Select */
#define POR2_PSLOT  0x00000004    /* PCMCIA Slot Identifier */
#define RESERVED18  0x00000002    /* Any write to this window will result
                                      in a bus error */
#define POR2_PV     0x00000001    /* PCMCIA Valid Bit */



/*------------------------------------*
 * Interface Option Register 3 (POR3) *
 *------------------------------------*/

#define POR3_BSIZE  0xF8000000    /* PCMCIA Bank Size */
#define RESERVED19  0x07F00000	  
#define POR3_PSHT   0x000F0000    /* PCMCIA Strobe Hold Time */
#define POR3_PSST   0x0000F000    /* PCMCIA Strobe Set Up Time */
#define POR3_PSL    0x00000F80    /* PCMCIA Strobe Length */
#define POR3_PPS    0x00000040    /* PCMCIA Port Size */
#define POR3_PRS    0x00000038    /* PCMCIA Region Select */
#define POR3_PSLOT  0x00000004    /* PCMCIA Slot Identifier */
#define RESERVED20  0x00000002    /* Any write to this window will result
                                      in a bus error */
#define POR3_PV     0x00000001    /* PCMCIA Valid Bit */



/*------------------------------------*
 * Interface Option Register 4 (POR4) *
 *------------------------------------*/

#define POR4_BSIZE  0xF8000000    /* PCMCIA Bank Size */
#define RESERVED21  0x07F00000	  
#define POR4_PSHT   0x000F0000    /* PCMCIA Strobe Hold Time */
#define POR4_PSST   0x0000F000    /* PCMCIA Strobe Set Up Time */
#define POR4_PSL    0x00000F80    /* PCMCIA Strobe Length */
#define POR4_PPS    0x00000040    /* PCMCIA Port Size */
#define POR4_PRS    0x00000038    /* PCMCIA Region Select */
#define POR4_PSLOT  0x00000004    /* PCMCIA Slot Identifier */
#define RESERVED22  0x00000002    /* Any write to this window will result
                                      in a bus error */
#define POR4_PV     0x00000001    /* PCMCIA Valid Bit */



/*------------------------------------*
 * Interface Option Register 5 (POR5) *
 *------------------------------------*/

#define POR5_BSIZE  0xF8000000    /* PCMCIA Bank Size */
#define RESERVED23  0x07F00000	  
#define POR5_PSHT   0x000F0000    /* PCMCIA Strobe Hold Time */
#define POR5_PSST   0x0000F000    /* PCMCIA Strobe Set Up Time */
#define POR5_PSL    0x00000F80    /* PCMCIA Strobe Length */
#define POR5_PPS    0x00000040    /* PCMCIA Port Size */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久er精品视频| 首页国产欧美日韩丝袜| 一区二区三区中文字幕电影| 久国产精品韩国三级视频| 99国产一区二区三精品乱码| 最新日韩在线视频| 在线播放91灌醉迷j高跟美女| 亚洲综合在线电影| 日本不卡123| 91精品国产综合久久久久久| 亚洲日本丝袜连裤袜办公室| 国产成人福利片| 久久亚区不卡日本| 激情五月激情综合网| 国产一区日韩二区欧美三区| 偷拍与自拍一区| 国产日韩欧美一区二区三区综合| 91色porny蝌蚪| 天堂一区二区在线| 欧美精品乱码久久久久久按摩 | www.亚洲人| 久久久久国产免费免费| 成人av网站免费| 亚洲欧美日韩在线播放| 欧美视频精品在线观看| 国产一区二区三区久久悠悠色av| 337p亚洲精品色噜噜狠狠| 911精品国产一区二区在线| 一区二区三区四区av| 不卡的av在线| 美国av一区二区| 亚洲欧美日韩精品久久久久| 亚洲欧美日韩在线| 中文字幕精品三区| 国产亲近乱来精品视频| www.99精品| 日本三级亚洲精品| 久久亚洲精品小早川怜子| 在线观看免费视频综合| 国产精品66部| 99久久久免费精品国产一区二区| 精品久久99ma| 欧美哺乳videos| 国产片一区二区| 91国在线观看| 日韩欧美中文一区二区| 日韩美女天天操| 亚洲精品一区二区精华| 久久人人爽人人爽| 精品国产免费一区二区三区四区 | 国产精品99久久久久久久女警| 91浏览器入口在线观看| 天使萌一区二区三区免费观看| 亚洲综合在线视频| 成人a免费在线看| 91亚洲精品久久久蜜桃网站| 欧美成人精品3d动漫h| 亚洲国产乱码最新视频| aaa亚洲精品| 26uuu久久天堂性欧美| 中文字幕制服丝袜成人av| 亚洲精品在线网站| 国产精品久久99| 国产一区二区三区观看| 国产欧美视频在线观看| 日韩一级黄色大片| 成人免费高清在线观看| 色吧成人激情小说| 欧美人狂配大交3d怪物一区| 麻豆精品新av中文字幕| 国产iv一区二区三区| 亚洲精品精品亚洲| 国产风韵犹存在线视精品| 国产电影精品久久禁18| 亚洲一区二区在线视频| 欧美成人精精品一区二区频| 97se狠狠狠综合亚洲狠狠| 亚洲国产aⅴ天堂久久| 中文字幕一区二区三区精华液| 1024亚洲合集| 欧美一区二区免费视频| 粉嫩蜜臀av国产精品网站| 亚洲综合激情网| 久久色在线视频| 777奇米成人网| 国产伦理精品不卡| 精品国产污网站| 国产中文字幕一区| 1区2区3区精品视频| 欧美va亚洲va| 欧美三级日韩在线| 国内精品在线播放| 五月激情综合网| 亚洲欧美日韩电影| 精品久久一区二区| 午夜在线成人av| 亚洲欧洲制服丝袜| 国产日韩欧美激情| 91亚洲精品一区二区乱码| 国产精品高潮呻吟| 久久婷婷一区二区三区| 欧美日韩成人综合在线一区二区| 亚洲18色成人| 色美美综合视频| 国产精品一级在线| 精品在线视频一区| 久久99精品国产.久久久久久| 日韩小视频在线观看专区| 欧美色大人视频| 在线观看日韩毛片| 欧美性色aⅴ视频一区日韩精品| 性做久久久久久免费观看欧美| 日韩一区二区三区电影| 欧美日韩国产区一| 666欧美在线视频| 国内精品第一页| 国产精品自拍av| 国产精品1区二区.| 国产精华液一区二区三区| 韩国精品久久久| 国产传媒久久文化传媒| 国产精品888| 9i在线看片成人免费| 成人app软件下载大全免费| 大胆欧美人体老妇| 播五月开心婷婷综合| 99re热这里只有精品免费视频| 一区二区三区国产精品| 久久综合网色—综合色88| 精品99999| 欧美日韩美女一区二区| 欧美日韩国产小视频| 日韩视频国产视频| 精品不卡在线视频| 亚洲三级在线看| 精品国产不卡一区二区三区| jlzzjlzz欧美大全| 91黄色免费看| 91精品国产综合久久福利| 欧美成人三级电影在线| 中文字幕免费观看一区| 欧美日韩国产在线观看| 99精品黄色片免费大全| 欧美亚洲图片小说| 国产iv一区二区三区| 久久激情五月婷婷| 免费人成精品欧美精品| 成人免费视频国产在线观看| 欧美在线视频你懂得| av电影在线观看一区| 欧美图区在线视频| 久久久精品tv| 久久网站热最新地址| 亚洲日本在线天堂| 久久精品国产一区二区| 99re这里只有精品首页| 欧美精品一区二区三区在线| 91精品国产综合久久久久| 欧美日韩在线免费视频| 久久综合狠狠综合久久激情| 亚洲精品亚洲人成人网| 亚洲女与黑人做爰| 精品无人区卡一卡二卡三乱码免费卡| 日欧美一区二区| 国产成人免费视频网站| 成人午夜免费av| 欧美一区二区福利在线| 综合电影一区二区三区 | 日韩国产在线观看一区| 国产精品亚洲一区二区三区在线| 精品一区二区在线看| 黑人精品欧美一区二区蜜桃| 色婷婷激情一区二区三区| 欧美国产97人人爽人人喊| 日本不卡123| 在线精品观看国产| 中文字幕欧美激情一区| 久久国产精品99久久久久久老狼| 国产一区二区三区| 欧美久久久久久久久中文字幕| 精品视频色一区| 亚洲精品国产一区二区精华液 | 麻豆精品一二三| 欧美男女性生活在线直播观看| 911国产精品| 亚洲一区二区美女| 在线观看一区日韩| 亚洲免费观看高清完整版在线| 亚洲国产另类精品专区| 91香蕉视频黄| 亚洲视频资源在线| 日韩高清不卡一区二区| 欧美视频日韩视频| 色天天综合久久久久综合片| 亚洲乱码国产乱码精品精98午夜| 亚洲成人动漫在线免费观看| 午夜精品福利视频网站| 久久中文娱乐网| 日韩欧美专区在线| 日韩一区二区三免费高清|