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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? bootinit.c

?? 440bx vxworks bsp
?? C
?? 第 1 頁 / 共 2 頁
字號:
     */
    ((FUNCPTR)ROM_OFFSET(copyLongs)) (ROM_TEXT_ADRS, (UINT)K0_TO_K1(romInit),
		ROM_COPY_SIZE / sizeof (long));
#else	/* CPU_FAMILY == MIPS */
    ((FUNCPTR)ROM_OFFSET(copyLongs)) (ROM_TEXT_ADRS, (UINT)romInit,
		ROM_COPY_SIZE / sizeof (long));
#endif	/* CPU_FAMILY == MIPS */

#else	/* UNCOMPRESS */

#if	(CPU_FAMILY == MIPS)
    /*
     * copy text to uncached locations to avoid problems with
     * copy back caches
     * copy the entire data segment because there is no way to ensure that
     * binArray is the last thing in the data segment because of GP relative
     * addressing
     */
    ((FUNCPTR)ROM_OFFSET(copyLongs)) (ROM_TEXT_ADRS, (UINT)K0_TO_K1(romInit),
		((UINT)wrs_kernel_data_end - (UINT)romInit) / sizeof (long));
#else	/* CPU_FAMILY == MIPS */
    ((FUNCPTR)ROM_OFFSET(copyLongs)) (ROM_TEXT_ADRS, (UINT)romInit,
		((UINT)binArrayStart - (UINT)romInit)/ sizeof (long));

    ((FUNCPTR)ROM_OFFSET(copyLongs)) 
           ((UINT *)((UINT)ROM_TEXT_ADRS + ((UINT)BINARRAYEND_ROUNDOFF - 
           (UINT)romInit)), (UINT *)BINARRAYEND_ROUNDOFF, 
           ((UINT)wrs_kernel_data_end - (UINT)binArrayEnd) / sizeof (long));

#if (CPU==XSCALE)
    /* validate coherence, can not assume uncached area... */
    ((FUNCPTR)ROM_OFFSET(checkLongs))
                 (ROM_TEXT_ADRS, (UINT)romInit,
                 ((UINT)binArrayStart - (UINT)romInit) / sizeof (long));

    ((FUNCPTR)ROM_OFFSET(checkLongs))
           ((UINT *)((UINT)ROM_TEXT_ADRS + ((UINT)BINARRAYEND_ROUNDOFF - 
            (UINT)romInit)), (UINT *)BINARRAYEND_ROUNDOFF,
            ((UINT)wrs_kernel_data_end - (UINT)binArrayEnd) / sizeof (long));
#endif
#endif	/* CPU_FAMILY == MIPS */

#endif	/* UNCOMPRESS */
#endif	/* ROM_RESIDENT */


#if	(CPU_FAMILY != MIPS) && (!defined (BOOTCODE_IN_RAM))

    /* clear all memory if cold booting */

    if (startType & BOOT_CLEAR)
	{
#ifdef ROM_RESIDENT
	/* Clear memory not loaded with text & data.
	 *
	 * We are careful about initializing all memory (except
	 * STACK_SAVE bytes) due to parity error generation (on
	 * some hardware) at a later stage.  This is usually
	 * caused by read accesses without initialization.
	 */
	fillLongs ((UINT *)SYS_MEM_BOTTOM,
		((UINT) RESIDENT_DATA - STACK_SAVE - (UINT)SYS_MEM_BOTTOM)
		/ sizeof(long), 0);
	fillLongs (((UINT *) wrs_kernel_data_end),
	((UINT)SYS_MEM_TOP - ((UINT) wrs_kernel_data_end)) / sizeof(long), 0);

#else	/* ROM_RESIDENT */
	fillLongs ((UINT *)(SYS_MEM_BOTTOM),
		((UINT)romInit - STACK_SAVE - (UINT)SYS_MEM_BOTTOM) /
		sizeof(long), 0);

#if     defined (UNCOMPRESS)
	fillLongs ((UINT *)((UINT)romInit + ROM_COPY_SIZE),
		    ((UINT)SYS_MEM_TOP - ((UINT)romInit + ROM_COPY_SIZE))
		    / sizeof(long), 0);
#else
	fillLongs ((UINT *)wrs_kernel_data_end,
		((UINT)SYS_MEM_TOP - (UINT)wrs_kernel_data_end) / sizeof (long), 0);
#endif 	/* UNCOMPRESS */
#endif 	/* ROM_RESIDENT */

	/* 
	 * Ensure the boot line is null. This is necessary for those
	 * targets whose boot line is excluded from cleaning.
	 */

	*(BOOT_LINE_ADRS) = EOS;
	}

#endif	/* (CPU_FAMILY != MIPS) && (!defined (BOOTCODE_IN_RAM)) */

    /* jump to VxWorks entry point (after uncompressing) */

#if	defined (UNCOMPRESS) || defined (ROM_RESIDENT)
#if	(CPU_FAMILY == I960)
    absEntry = (FUNCPTR)sysInitAlt;			/* reinit proc tbl */
#else
    absEntry = (FUNCPTR)usrInit;			/* on to bootConfig */
#endif	/* CPU_FAMILY == I960 */

#else
    {
#if	(CPU_FAMILY == MIPS)
    volatile FUNCPTR absUncompress = (FUNCPTR) UNCMP_RTN;
    if ((absUncompress) ((UCHAR *)ROM_OFFSET(binArrayStart),
			 (UCHAR *)K0_TO_K1(RAM_DST_ADRS),
			 (int)((UINT)binArrayEnd - (UINT)binArrayStart)) != OK)
#elif	(CPU_FAMILY == I80X86) || (CPU_FAMILY == ARM)
    volatile FUNCPTR absUncompress = (FUNCPTR) UNCMP_RTN;
    if ((absUncompress) ((UCHAR *)ROM_OFFSET(binArrayStart),
	            (UCHAR *)RAM_DST_ADRS, binArrayEnd - binArrayStart) != OK)
#else
    if (UNCMP_RTN ((UCHAR *)ROM_OFFSET(binArrayStart),
	            (UCHAR *)RAM_DST_ADRS, binArrayEnd - binArrayStart) != OK)
#endif	/* (CPU_FAMILY == MIPS) */
	return;		/* if we return then ROM's will halt */

    absEntry = (FUNCPTR)RAM_DST_ADRS;			/* compressedEntry () */
    }
#endif	/* defined UNCOMPRESS || defined ROM_RESIDENT */

#if	((CPU_FAMILY == ARM) && ARM_THUMB)
    absEntry = (FUNCPTR)((UINT32)absEntry | 1);		/* force Thumb state */
#endif	/* CPU_FAMILY == ARM */

    (absEntry) (startType);
    }

#if     (CPU_FAMILY==ARM) && (!defined(ROM_RESIDENT))
#undef fillLongs
#endif  /* (CPU_FAMILY==ARM) */


#if (CPU_FAMILY==MC680X0) && !defined(ROM_RESIDENT) && !defined(BOOTCODE_IN_RAM)
#undef copyLongs	/* undo effects from above define */
#endif /* CPU_FAMILY==MC680X0 */

/*******************************************************************************
*
* copyLongs - copy one buffer to another a long at a time
*
* This routine copies the first <nlongs> longs from <source> to <destination>.
*/

LOCAL void copyLongs (source, destination, nlongs)
    FAST UINT *source;		/* pointer to source buffer      */
    FAST UINT *destination;	/* pointer to destination buffer */
    UINT nlongs;		/* number of longs to copy       */

    {
    FAST UINT *dstend = destination + nlongs;
    FAST UINT nchunks;

    /* Hop by chunks of longs, for speed. */
    for (nchunks = nlongs / 8; nchunks; --nchunks)
	{
#if (CPU_FAMILY == MC680X0)
	*destination++ = *source++;	/* 0 */
	*destination++ = *source++;	/* 1 */
	*destination++ = *source++;	/* 2 */
	*destination++ = *source++;	/* 3 */
	*destination++ = *source++;	/* 4 */
	*destination++ = *source++;	/* 5 */
	*destination++ = *source++;	/* 6 */
	*destination++ = *source++;	/* 7 */
#else
	destination[0] = source[0];
	destination[1] = source[1];
	destination[2] = source[2];
	destination[3] = source[3];
	destination[4] = source[4];
	destination[5] = source[5];
	destination[6] = source[6];
	destination[7] = source[7];
	destination += 8, source += 8;
#endif /* CPU_FAMILY == MC680X0 */
	}

    /* Do the remainder one long at a time. */
    while (destination < dstend)
	*destination++ = *source++;
    }

#ifndef	BOOTCODE_IN_RAM
/*******************************************************************************
*
* fillLongs - fill a buffer with a value a long at a time
*
* This routine fills the first <nlongs> longs of the buffer with <val>.
*/

LOCAL void fillLongs (buf, nlongs, val)
    FAST UINT *buf;	/* pointer to buffer              */
    UINT nlongs;	/* number of longs to fill        */
    FAST UINT val;	/* char with which to fill buffer */

    {
    FAST UINT *bufend = buf + nlongs;
    FAST UINT nchunks;

    /* Hop by chunks of longs, for speed. */
    for (nchunks = nlongs / 8; nchunks; --nchunks)
	{
#if (CPU_FAMILY == MC680X0)
	*buf++ = val;	/* 0 */
	*buf++ = val;	/* 1 */
	*buf++ = val;	/* 2 */
	*buf++ = val;	/* 3 */
	*buf++ = val;	/* 4 */
	*buf++ = val;	/* 5 */
	*buf++ = val;	/* 6 */
	*buf++ = val;	/* 7 */
#else
	buf[0] = val;
	buf[1] = val;
	buf[2] = val;
	buf[3] = val;
	buf[4] = val;
	buf[5] = val;
	buf[6] = val;
	buf[7] = val;
	buf += 8;
#endif /* CPU_FAMILY == MC680X0 */
	}

    /* Do the remainder one long at a time. */
    while (buf < bufend)
	*buf++ = val;
    }
#endif	/* BOOTCODE_IN_RAM */

#if (CPU==XSCALE)
int checkLongs (source, destination, nlongs)
    FAST UINT *source;          /* pointer to source buffer      */
    FAST UINT *destination;     /* pointer to destination buffer */
    UINT nlongs;                /* number of longs to copy       */

    {
    int fine = 1;

    FAST UINT *dstend = destination + nlongs;

    while (destination < dstend)
        {
        if (*destination++ != *source++)
            {
            fine = 0;
            break;
            }
        }
    return fine;
    }
#endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久免费毛片精品| 亚洲国产精品99久久久久久久久| 综合久久一区二区三区| 99久久久久免费精品国产 | 欧美一区午夜视频在线观看 | 久久九九全国免费| 国产白丝网站精品污在线入口| 久久精品无码一区二区三区| 懂色av一区二区夜夜嗨| 最新国产成人在线观看| 欧美精品黑人性xxxx| 另类小说视频一区二区| 久久婷婷国产综合精品青草| 成人小视频在线观看| 亚洲免费三区一区二区| 欧美日韩国产成人在线免费| 激情综合色综合久久| 国产精品久久777777| 欧美在线不卡一区| 久久精品二区亚洲w码| 国产精品久久久久婷婷| 欧美综合久久久| 久草热8精品视频在线观看| 2021国产精品久久精品| aaa亚洲精品| 日韩国产精品久久| 国产精品九色蝌蚪自拍| 在线不卡一区二区| 豆国产96在线|亚洲| 亚洲成人黄色影院| 国产清纯美女被跳蛋高潮一区二区久久w| 成人av网站免费观看| 午夜天堂影视香蕉久久| 亚洲国产成人自拍| 欧美顶级少妇做爰| 97se亚洲国产综合自在线观| 偷拍日韩校园综合在线| 国产精品毛片大码女人| 欧美日本高清视频在线观看| 国产精品一区二区果冻传媒| 午夜国产精品一区| 中文字幕亚洲区| 久久亚洲二区三区| 欧美三级电影网| 丁香婷婷综合色啪| 另类综合日韩欧美亚洲| 亚洲综合一区二区精品导航| 国产区在线观看成人精品| 91精品国产一区二区三区| 99国产精品久久久久| 国产综合久久久久影院| 五月天中文字幕一区二区| 国产精品福利一区二区| 精品久久久影院| 欧美一卡2卡三卡4卡5免费| 一本大道久久a久久精二百| 国产精品原创巨作av| 丝袜国产日韩另类美女| 樱桃视频在线观看一区| 国产精品三级av| 无码av中文一区二区三区桃花岛| 欧美国产综合色视频| 亚洲精品一线二线三线| 欧美裸体一区二区三区| 欧美影视一区在线| 色婷婷香蕉在线一区二区| 成人av动漫在线| 成人国产精品免费观看| 成人精品高清在线| 国产精品中文字幕日韩精品| 激情综合五月天| 久久97超碰国产精品超碰| 日韩精品久久理论片| 午夜欧美视频在线观看| 亚洲国产视频直播| 亚洲成a人片综合在线| 亚洲国产精品自拍| 亚洲18影院在线观看| 亚洲二区在线观看| 天天综合天天做天天综合| 亚洲国产精品久久艾草纯爱| 亚洲伊人色欲综合网| 亚洲综合色视频| 五月天激情综合网| 日韩高清电影一区| 久久精品国产在热久久| 国产自产高清不卡| 福利一区二区在线观看| 处破女av一区二区| 91一区一区三区| 在线视频欧美区| 这里只有精品免费| 日韩午夜中文字幕| 久久精品亚洲国产奇米99| 中文字幕精品—区二区四季| 国产精品大尺度| 一卡二卡三卡日韩欧美| 日韩黄色免费网站| 国产精品99久久久久久有的能看 | 亚洲一区免费视频| 日日嗨av一区二区三区四区| 美腿丝袜亚洲色图| 国产成人免费在线视频| 99久久精品国产一区二区三区| 色综合久久中文字幕综合网| 欧美日韩不卡在线| 欧美mv日韩mv| 中文字幕一区二区三区四区 | 亚洲男女一区二区三区| 午夜视频在线观看一区| 激情伊人五月天久久综合| 97精品久久久午夜一区二区三区| 欧美日韩国产综合视频在线观看 | 国产午夜精品久久久久久久 | 成人永久看片免费视频天堂| 91麻豆成人久久精品二区三区| 欧美日韩黄色影视| 国产视频一区在线观看 | 国产精品白丝在线| 日韩av一级电影| 91色婷婷久久久久合中文| 9191国产精品| 1000部国产精品成人观看| 日韩va欧美va亚洲va久久| 成人免费观看男女羞羞视频| 欧美日韩精品一区二区三区 | 久久久国产一区二区三区四区小说| 国产精品久久777777| 琪琪久久久久日韩精品| 91美女蜜桃在线| 久久嫩草精品久久久精品一| 亚洲精品视频在线看| 国产成人综合亚洲网站| 欧美精品久久99| 亚洲免费在线看| 国产精品88888| 91精品久久久久久久91蜜桃 | 欧美日韩一区中文字幕| 日本一区二区三级电影在线观看 | 欧美一区二区三区四区五区| 中文字幕在线视频一区| 韩日精品视频一区| 欧美性一二三区| 一区二区在线观看不卡| 国产精品综合网| 精品乱人伦小说| 日本vs亚洲vs韩国一区三区| 日本韩国一区二区三区视频| 国产精品第四页| 成人黄色av电影| 国产日产欧产精品推荐色 | 日韩女优av电影在线观看| 亚洲一级二级三级在线免费观看| 成人h精品动漫一区二区三区| 日韩一区二区电影在线| 日韩激情一二三区| 欧美二区在线观看| 视频一区二区中文字幕| 欧美日韩国产高清一区二区三区 | 亚洲人成在线播放网站岛国| 国产精品综合一区二区三区| 亚洲精品在线免费播放| 狠狠色丁香婷婷综合久久片| 欧美一级午夜免费电影| 日韩av中文字幕一区二区三区| 4438成人网| 蜜桃av一区二区三区| 日韩三级高清在线| 另类小说色综合网站| 日韩欧美精品在线| 蜜桃精品视频在线观看| 欧美一区二区三区免费视频| 偷偷要91色婷婷| 日韩一二三区视频| 国产综合久久久久久鬼色| 久久久噜噜噜久久人人看| 国产福利精品导航| 国产精品色呦呦| 99久久99精品久久久久久 | 6080日韩午夜伦伦午夜伦| 免费精品视频在线| 亚洲精品一区在线观看| 岛国精品一区二区| 一区二区三区欧美日| 欧美喷潮久久久xxxxx| 久久国产人妖系列| 国产喷白浆一区二区三区| 91在线小视频| 性做久久久久久| 日韩精品一区二区三区蜜臀| 国产一区二区三区美女| 亚洲欧洲国产专区| 欧美视频第二页| 另类中文字幕网| 国产精品二三区| 8x8x8国产精品| 成人性生交大片免费| 亚洲v精品v日韩v欧美v专区| 亚洲精品一区二区三区在线观看| 成人丝袜高跟foot|