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

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

?? prim_ops.c

?? u-boot1.3.0的原碼,從配了網(wǎng)絡驅(qū)動和FLASH的驅(qū)動,并該用ESC竟如
?? C
?? 第 1 頁 / 共 5 頁
字號:
	    res = 0;	    CLEAR_FLAG(F_CF);	    SET_FLAG(F_ZF);	    CLEAR_FLAG(F_SF);	    CLEAR_FLAG(F_PF);	}    }    return (u16)res;}/****************************************************************************REMARKS:Implements the SAR instruction and side effects.****************************************************************************/u32 sar_long(u32 d, u8 s){    u32 cnt, res, cf, mask, sf;    sf = d & 0x80000000;    cnt = s % 32;    res = d;    if (cnt > 0 && cnt < 32) {	mask = (1 << (32 - cnt)) - 1;	cf = d & (1 << (cnt - 1));	res = (d >> cnt) & mask;	CONDITIONAL_SET_FLAG(cf, F_CF);	if (sf) {	    res |= ~mask;	}	set_szp_flags_32(res);    } else if (cnt >= 32) {	if (sf) {	    res = 0xffffffff;	    SET_FLAG(F_CF);	    CLEAR_FLAG(F_ZF);	    SET_FLAG(F_SF);	    SET_FLAG(F_PF);	} else {	    res = 0;	    CLEAR_FLAG(F_CF);	    SET_FLAG(F_ZF);	    CLEAR_FLAG(F_SF);	    CLEAR_FLAG(F_PF);	}    }    return res;}/****************************************************************************REMARKS:Implements the SHLD instruction and side effects.****************************************************************************/u16 shld_word (u16 d, u16 fill, u8 s){    unsigned int cnt, res, cf;    if (s < 16) {	cnt = s % 16;	if (cnt > 0) {	    res = (d << cnt) | (fill >> (16-cnt));	    cf = d & (1 << (16 - cnt));	    CONDITIONAL_SET_FLAG(cf, F_CF);	    set_szp_flags_16((u16)res);	} else {	    res = d;	}	if (cnt == 1) {	    CONDITIONAL_SET_FLAG((((res & 0x8000) == 0x8000) ^				  (ACCESS_FLAG(F_CF) != 0)), F_OF);	} else {	    CLEAR_FLAG(F_OF);	}    } else {	res = 0;	CONDITIONAL_SET_FLAG((d << (s-1)) & 0x8000, F_CF);	CLEAR_FLAG(F_OF);	CLEAR_FLAG(F_SF);	SET_FLAG(F_PF);	SET_FLAG(F_ZF);    }    return (u16)res;}/****************************************************************************REMARKS:Implements the SHLD instruction and side effects.****************************************************************************/u32 shld_long (u32 d, u32 fill, u8 s){    unsigned int cnt, res, cf;    if (s < 32) {	cnt = s % 32;	if (cnt > 0) {	    res = (d << cnt) | (fill >> (32-cnt));	    cf = d & (1 << (32 - cnt));	    CONDITIONAL_SET_FLAG(cf, F_CF);	    set_szp_flags_32((u32)res);	} else {	    res = d;	}	if (cnt == 1) {	    CONDITIONAL_SET_FLAG((((res & 0x80000000) == 0x80000000) ^				  (ACCESS_FLAG(F_CF) != 0)), F_OF);	} else {	    CLEAR_FLAG(F_OF);	}    } else {	res = 0;	CONDITIONAL_SET_FLAG((d << (s-1)) & 0x80000000, F_CF);	CLEAR_FLAG(F_OF);	CLEAR_FLAG(F_SF);	SET_FLAG(F_PF);	SET_FLAG(F_ZF);    }    return res;}/****************************************************************************REMARKS:Implements the SHRD instruction and side effects.****************************************************************************/u16 shrd_word (u16 d, u16 fill, u8 s){    unsigned int cnt, res, cf;    if (s < 16) {	cnt = s % 16;	if (cnt > 0) {	    cf = d & (1 << (cnt - 1));	    res = (d >> cnt) | (fill << (16 - cnt));	    CONDITIONAL_SET_FLAG(cf, F_CF);	    set_szp_flags_16((u16)res);	} else {	    res = d;	}	if (cnt == 1) {	    CONDITIONAL_SET_FLAG(XOR2(res >> 14), F_OF);	} else {	    CLEAR_FLAG(F_OF);	}    } else {	res = 0;	CLEAR_FLAG(F_CF);	CLEAR_FLAG(F_OF);	SET_FLAG(F_ZF);	CLEAR_FLAG(F_SF);	CLEAR_FLAG(F_PF);    }    return (u16)res;}/****************************************************************************REMARKS:Implements the SHRD instruction and side effects.****************************************************************************/u32 shrd_long (u32 d, u32 fill, u8 s){    unsigned int cnt, res, cf;    if (s < 32) {	cnt = s % 32;	if (cnt > 0) {	    cf = d & (1 << (cnt - 1));	    res = (d >> cnt) | (fill << (32 - cnt));	    CONDITIONAL_SET_FLAG(cf, F_CF);	    set_szp_flags_32((u32)res);	} else {	    res = d;	}	if (cnt == 1) {	    CONDITIONAL_SET_FLAG(XOR2(res >> 30), F_OF);	} else {	    CLEAR_FLAG(F_OF);	}    } else {	res = 0;	CLEAR_FLAG(F_CF);	CLEAR_FLAG(F_OF);	SET_FLAG(F_ZF);	CLEAR_FLAG(F_SF);	CLEAR_FLAG(F_PF);    }    return res;}/****************************************************************************REMARKS:Implements the SBB instruction and side effects.****************************************************************************/u8 sbb_byte(u8 d, u8 s){    u32 res;   /* all operands in native machine order */    u32 bc;    if (ACCESS_FLAG(F_CF))	res = d - s - 1;    else	res = d - s;    set_szp_flags_8((u8)res);    /* calculate the borrow chain.  See note at top */    bc = (res & (~d | s)) | (~d & s);    CONDITIONAL_SET_FLAG(bc & 0x80, F_CF);    CONDITIONAL_SET_FLAG(XOR2(bc >> 6), F_OF);    CONDITIONAL_SET_FLAG(bc & 0x8, F_AF);    return (u8)res;}/****************************************************************************REMARKS:Implements the SBB instruction and side effects.****************************************************************************/u16 sbb_word(u16 d, u16 s){    u32 res;   /* all operands in native machine order */    u32 bc;    if (ACCESS_FLAG(F_CF))	res = d - s - 1;    else	res = d - s;    set_szp_flags_16((u16)res);    /* calculate the borrow chain.  See note at top */    bc = (res & (~d | s)) | (~d & s);    CONDITIONAL_SET_FLAG(bc & 0x8000, F_CF);    CONDITIONAL_SET_FLAG(XOR2(bc >> 14), F_OF);    CONDITIONAL_SET_FLAG(bc & 0x8, F_AF);    return (u16)res;}/****************************************************************************REMARKS:Implements the SBB instruction and side effects.****************************************************************************/u32 sbb_long(u32 d, u32 s){    u32 res;   /* all operands in native machine order */    u32 bc;    if (ACCESS_FLAG(F_CF))	res = d - s - 1;    else	res = d - s;    set_szp_flags_32(res);    /* calculate the borrow chain.  See note at top */    bc = (res & (~d | s)) | (~d & s);    CONDITIONAL_SET_FLAG(bc & 0x80000000, F_CF);    CONDITIONAL_SET_FLAG(XOR2(bc >> 30), F_OF);    CONDITIONAL_SET_FLAG(bc & 0x8, F_AF);    return res;}/****************************************************************************REMARKS:Implements the SUB instruction and side effects.****************************************************************************/u8 sub_byte(u8 d, u8 s){    u32 res;   /* all operands in native machine order */    u32 bc;    res = d - s;    set_szp_flags_8((u8)res);    /* calculate the borrow chain.  See note at top */    bc = (res & (~d | s)) | (~d & s);    CONDITIONAL_SET_FLAG(bc & 0x80, F_CF);    CONDITIONAL_SET_FLAG(XOR2(bc >> 6), F_OF);    CONDITIONAL_SET_FLAG(bc & 0x8, F_AF);    return (u8)res;}/****************************************************************************REMARKS:Implements the SUB instruction and side effects.****************************************************************************/u16 sub_word(u16 d, u16 s){    u32 res;   /* all operands in native machine order */    u32 bc;    res = d - s;    set_szp_flags_16((u16)res);    /* calculate the borrow chain.  See note at top */    bc = (res & (~d | s)) | (~d & s);    CONDITIONAL_SET_FLAG(bc & 0x8000, F_CF);    CONDITIONAL_SET_FLAG(XOR2(bc >> 14), F_OF);    CONDITIONAL_SET_FLAG(bc & 0x8, F_AF);    return (u16)res;}/****************************************************************************REMARKS:Implements the SUB instruction and side effects.****************************************************************************/u32 sub_long(u32 d, u32 s){    u32 res;   /* all operands in native machine order */    u32 bc;    res = d - s;    set_szp_flags_32(res);    /* calculate the borrow chain.  See note at top */    bc = (res & (~d | s)) | (~d & s);    CONDITIONAL_SET_FLAG(bc & 0x80000000, F_CF);    CONDITIONAL_SET_FLAG(XOR2(bc >> 30), F_OF);    CONDITIONAL_SET_FLAG(bc & 0x8, F_AF);    return res;}/****************************************************************************REMARKS:Implements the TEST instruction and side effects.****************************************************************************/void test_byte(u8 d, u8 s){    u32 res;   /* all operands in native machine order */    res = d & s;    CLEAR_FLAG(F_OF);    set_szp_flags_8((u8)res);    /* AF == dont care */    CLEAR_FLAG(F_CF);}/****************************************************************************REMARKS:Implements the TEST instruction and side effects.****************************************************************************/void test_word(u16 d, u16 s){    u32 res;   /* all operands in native machine order */    res = d & s;    CLEAR_FLAG(F_OF);    set_szp_flags_16((u16)res);    /* AF == dont care */    CLEAR_FLAG(F_CF);}/****************************************************************************REMARKS:Implements the TEST instruction and side effects.****************************************************************************/void test_long(u32 d, u32 s){    u32 res;   /* all operands in native machine order */    res = d & s;    CLEAR_FLAG(F_OF);    set_szp_flags_32(res);    /* AF == dont care */    CLEAR_FLAG(F_CF);}/****************************************************************************REMARKS:Implements the XOR instruction and side effects.****************************************************************************/u8 xor_byte(u8 d, u8 s){    u8 res;    /* all operands in native machine order */    res = d ^ s;    no_carry_byte_side_eff(res);    return res;}/****************************************************************************REMARKS:Implements the XOR instruction and side effects.****************************************************************************/u16 xor_word(u16 d, u16 s){    u16 res;   /* all operands in native machine order */    res = d ^ s;    no_carry_word_side_eff(res);    return res;}/****************************************************************************REMARKS:Implements the XOR instruction and side effects.****************************************************************************/u32 xor_long(u32 d, u32 s){    u32 res;   /* all operands in native machine order */    res = d ^ s;    no_carry_long_side_eff(res);    return res;}/****************************************************************************REMARKS:Implements the IMUL instruction and side effects.****************************************************************************/void imul_byte(u8 s){    s16 res = (s16)((s8)M.x86.R_AL * (s8)s);    M.x86.R_AX = res;    if (((M.x86.R_AL & 0x80) == 0 && M.x86.R_AH == 0x00) ||	((M.x86.R_AL & 0x80) != 0 && M.x86.R_AH == 0xFF)) {	CLEAR_FLAG(F_CF);	CLEAR_FLAG(F_OF);    } else {	SET_FLAG(F_CF);	SET_FLAG(F_OF);    }}/****************************************************************************REMARKS:Implements the IMUL instruction and side effects.****************************************************************************/void imul_word(u16 s){    s32 res = (s16)M.x86.R_AX * (s16)s;    M.x86.R_AX = (u16)res;    M.x86.R_DX = (u16)(res >> 16);    if (((M.x86.R_AX & 0x8000) == 0 && M.x86.R_DX == 0x0000) ||	((M.x86.R_AX & 0x8000) != 0 && M.x86.R_DX == 0xFFFF)) {	CLEAR_FLAG(F_CF);	CLEAR_FLAG(F_OF);    } else {	SET_FLAG(F_CF);	SET_FLAG(F_OF);    }}/****************************************************************************REMARKS:Implements the IMUL instruction and side effects.****************************************************************************/void imul_long_direct(u32 *res_lo, u32* res_hi,u32 d, u32 s){#ifdef	__HAS_LONG_LONG__    s64 res = (s32)d * (s32)s;    *res_lo = (u32)res;    *res_hi = (u32)(res >> 32);#else    u32 d_lo,d_hi,d_sign;    u32 s_lo,s_hi,s_sign;    u32 rlo_lo,rlo_hi,rhi_lo;    if ((d_sign = d & 0x80000000) != 0)	d = -d;    d_lo = d & 0xFFFF;    d_hi = d >> 16;    if ((s_sign = s & 0x80000000) != 0)	s = -s;    s_lo = s & 0xFFFF;    s_hi = s >> 16;    rlo_lo = d_lo * s_lo;    rlo_hi = (d_hi * s_lo + d_lo * s_hi) + (rlo_lo >> 16);    rhi_lo = d_hi * s_hi + (rlo_hi >> 16);    *res_lo = (rlo_hi << 16) | (rlo_lo & 0xFFFF);    *res_hi = rhi_lo;    if (d_sign != s_sign) {	d = ~*res_lo;	s = (((d & 0xFFFF) + 1) >> 16) + (d >> 16);	*res_lo = ~*res_lo+1;	*res_hi = ~*res_hi+(s >> 16);	}#endif}/****************************************************************************REMARKS:Implements the IMUL instruction and side effects.****************************************************************************/void imul_long(u32 s){    imul_long_direct(&M.x86.R_EAX,&M.x86.R_EDX,M.x86.R_EAX,s);    if (((M.x86.R_EAX & 0x80000000) == 0 && M.x86.R_EDX == 0x00000000) ||	((M.x86.R_EAX & 0x80000000) != 0 && M.x86.R_EDX == 0xFFFFFFFF)) {	CLEAR_FLAG(F_CF);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久国内精品自在自线400部| 91色在线porny| 成人av资源下载| 欧美美女一区二区三区| 精品国产123| 婷婷综合另类小说色区| av日韩在线网站| 久久人人爽人人爽| 日韩影视精彩在线| 欧洲一区在线观看| 亚洲国产成人自拍| 加勒比av一区二区| 日韩一区二区在线看片| 亚洲成人精品一区二区| 色综合久久66| 国产精品久久久久一区二区三区| 蜜桃久久久久久| 91麻豆精品国产91久久久久久| 自拍偷拍亚洲欧美日韩| 国产精品99久久久久久宅男| 欧美成人a视频| 蜜臀精品一区二区三区在线观看 | 欧美性猛片aaaaaaa做受| 国产欧美日本一区视频| 国产中文字幕精品| 久久欧美中文字幕| 精品系列免费在线观看| 日韩精品一区二区三区在线观看| 日韩精品每日更新| 91麻豆精品国产91久久久久| 亚洲高清中文字幕| 51精品久久久久久久蜜臀| 亚洲va在线va天堂| 7799精品视频| 久久99精品久久久久久| 久久亚洲捆绑美女| 国产成人综合亚洲网站| 国产亚洲欧美一区在线观看| 国产麻豆视频一区二区| 久久久777精品电影网影网 | 国产精品美女视频| 99久久精品国产精品久久| 亚洲欧洲成人av每日更新| 91日韩精品一区| 亚洲资源中文字幕| 日韩一区二区三区视频| 国产美女精品一区二区三区| 日本一区二区视频在线| 99精品热视频| 国产精品人成在线观看免费| 不卡大黄网站免费看| 亚洲精品国产a久久久久久| 精品视频一区三区九区| 偷拍一区二区三区四区| 久久蜜臀精品av| 色综合天天天天做夜夜夜夜做| 一区二区国产视频| 欧美人与禽zozo性伦| 韩国三级在线一区| 中文字幕精品—区二区四季| 色婷婷久久久亚洲一区二区三区| 天天射综合影视| 国产三级三级三级精品8ⅰ区| 国产白丝网站精品污在线入口| 国产亚洲视频系列| 色婷婷久久久综合中文字幕| 日本亚洲视频在线| 国产精品久久久久桃色tv| 欧美日韩久久一区| 国产99久久久国产精品潘金| 一区二区三区四区中文字幕| 精品国精品自拍自在线| 91在线播放网址| 久久66热偷产精品| 亚洲欧美日韩在线| 久久―日本道色综合久久| 欧美在线观看视频一区二区三区| 国产精品自拍一区| 日韩专区一卡二卡| 中文字幕在线一区二区三区| 日韩视频在线永久播放| 欧美亚洲国产一区在线观看网站 | 成人午夜视频网站| 日本免费在线视频不卡一不卡二| 国产精品久久久久久久浪潮网站| 欧美一级国产精品| 色94色欧美sute亚洲13| 国产大片一区二区| 理论电影国产精品| 午夜欧美在线一二页| 亚洲激情一二三区| 中文字幕亚洲欧美在线不卡| 精品久久久三级丝袜| 精品视频色一区| 日本韩国一区二区三区| jlzzjlzz欧美大全| 从欧美一区二区三区| 久久不见久久见免费视频7| 亚洲最大的成人av| 中文字幕亚洲在| 中文字幕日韩欧美一区二区三区| 久久久久久久久久电影| 精品国产91乱码一区二区三区| 7777精品伊人久久久大香线蕉的 | 91精品国产综合久久精品麻豆| 91麻豆福利精品推荐| 成人美女视频在线看| 成人激情校园春色| 成人激情黄色小说| www.亚洲激情.com| 成人黄色电影在线| 99久免费精品视频在线观看 | 国产一区二区三区久久久 | 91偷拍与自偷拍精品| 国产69精品一区二区亚洲孕妇| 国产成人精品亚洲午夜麻豆| 国产成人综合在线播放| 国产成人精品一区二| 成人av在线看| 99久久99久久精品免费看蜜桃| 91亚洲国产成人精品一区二三| 色综合久久六月婷婷中文字幕| 色老汉一区二区三区| 欧美日韩黄色影视| 日韩欧美高清一区| 国产午夜精品一区二区 | 亚洲五码中文字幕| 亚洲 欧美综合在线网络| 午夜精品福利一区二区三区av | 久久久亚洲精品一区二区三区| 久久网站最新地址| 国产精品久久精品日日| 亚洲人快播电影网| 偷拍一区二区三区四区| 久久国产精品99久久久久久老狼| 国产在线精品一区二区不卡了 | 91性感美女视频| 欧美日韩久久久| 欧美大度的电影原声| 国产精品视频九色porn| 一区二区三区日韩| 免费的国产精品| www.欧美日韩| 欧美日韩国产高清一区二区三区| 精品1区2区在线观看| 国产精品二区一区二区aⅴ污介绍| 亚洲一二三四区不卡| 毛片av一区二区| 成人激情av网| 日韩一区二区免费在线观看| 国产精品免费丝袜| 奇米影视在线99精品| 99久久国产综合色|国产精品| 欧美一区二区福利视频| 国产精品免费视频一区| 日本欧美一区二区| av中文字幕亚洲| 精品盗摄一区二区三区| 一区二区三区在线视频观看| 国产一区二区不卡在线| 精品污污网站免费看| 国产精品蜜臀在线观看| 青青草国产成人99久久| 一本久道中文字幕精品亚洲嫩| 日韩免费视频一区| 亚洲电影中文字幕在线观看| 国产激情视频一区二区三区欧美 | 国产综合久久久久久鬼色| 国产一区二区三区四 | 不卡的电影网站| 日韩欧美中文字幕制服| 国产精品三级电影| 日韩成人一区二区三区在线观看| av激情亚洲男人天堂| 日韩视频免费观看高清完整版在线观看| 国产精品日产欧美久久久久| 精品无人区卡一卡二卡三乱码免费卡| 色乱码一区二区三区88| 国产精品麻豆网站| 激情综合色播激情啊| 日韩亚洲欧美一区二区三区| 一区二区免费在线播放| 成人aa视频在线观看| 国产欧美一区二区精品性色| 久久国产人妖系列| 91麻豆精品国产自产在线| 一区二区三区国产精品| 99久久精品国产精品久久| 中文字幕欧美日韩一区| 狠狠色2019综合网| 日韩精品一区二区三区蜜臀| 亚洲bt欧美bt精品777| 色播五月激情综合网| 亚洲欧美视频在线观看视频| av一区二区三区四区| 国产精品久久久久影院老司 | 国产精品三级电影| 成人app下载| 日韩一区中文字幕| 在线观看亚洲一区|