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

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

?? parse1.c

?? 地球模擬器
?? C
?? 第 1 頁 / 共 2 頁
字號(hào):
/* parse1.c   9-9-92  parser functions for instruction set 1 *//* Tierra Simulator V4.0: Copyright (c) 1991, 1992 Tom Ray & Virtual Life */#if INST == 1/* in INST == 1, the array of registers maps into the registers ax, bx, cx, dx   as follows:  c.re[0] = ax, c.re[1] = bx, c.re[2] = cx, c.re[3] = dx    {0x00, "nop0", nop, pnop},    {0x01, "nop1", nop, pnop},    {0x02, "not0", not0, pnot0},    {0x03, "shl", shl, pshl},    {0x04, "zero", movdd, pzero},    {0x05, "ifz", ifz, pifz},    {0x06, "sub_ab", math, psub_ab},    {0x07, "sub_ac", math, psub_ac},    {0x08, "inc_a", math, pinc_a},    {0x09, "inc_b", math, pinc_b},    {0x0a, "dec_c", math, pdec_c},    {0x0b, "inc_c", math, pinc_c},    {0x0c, "pushax", push, ppushax},    {0x0d, "pushbx", push, ppushbx},    {0x0e, "pushcx", push, ppushcx},    {0x0f, "pushdx", push, ppushdx},    {0x10, "popax", pop, ppopax},    {0x11, "popbx", pop, ppopbx},    {0x12, "popcx", pop, ppopcx},    {0x13, "popdx", pop, ppopdx},    {0x14, "jmp", adr, ptjmp},    {0x15, "jmpb", adr, ptjmpb},    {0x16, "call", tcall, ptcall},    {0x17, "ret", pop, pret},    {0x18, "movcd", movdd, pmovdc},    {0x19, "movab", movdd, pmovba},    {0x1a, "movii", movii, pmovii},    {0x1b, "adr", adr, padr},    {0x1c, "adrb", adr, padrb},    {0x1d, "adrf", adr, padrf},    {0x1e, "mal", malchm, pmal},    {0x1f, "divide", divide, pdivide}*/void pnop(ce) /* do nothing */Pcells  ce;{   is.iip = is.dib = 1;}/* void not0(ce) *(is.dreg) ^= (1 + flaw(ce)); * is.dreg = destination register, whose bit will be flipped * is.dmod = value by which to modulus destination register * is.dran = range within which to contain destination register */void pnot0(ce) /* flip low order bit of cx */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[2]);    is.dran = SoupSize;}/* void shl(ce) *(is.dreg) <<= (Reg) (1 + flaw(ce)); * is.dreg = destination register, whose bits will be shifted left * is.dmod = value by which to modulus destination register * is.dran = range within which to contain destination register */void pshl(ce) /* shift left all register of cx */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[2]);    is.dran = SoupSize;}/* void movdd(ce) *(is.dreg) = is.sval + flaw(ce); * is.dreg = destination register, where moved value will be placed * is.sval = value to be placed in the dest reg * is.dmod = value by which to modulus destination register * is.dran = range within which to contain destination register */void pzero(ce) /* cx = 0 */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[2]);    is.sval = 0;}/* void ifz(ce) if (is.sval + flaw(ce)) is.iip = is.sval2; * is.sval  = value to test for zero * is.sval2 = amount to increment IP if is.sval == 0 * is.iip   = amount to increment IP if is.sval != 0 */void pifz(ce) /* execute next instruction, if is.sval == 0 */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.sval = ce->c.re[2];    is.sval2 = 2;}/* void math(ce) *(is.dreg) = is.sval + is.sval2 + flaw(ce); * is.dreg  = destination register, where calculation will be stored * is.sval  = a value that will be added to is.sval2 and placed in dest reg * is.sval2 = a value that will be added to is.sval  and placed in dest reg * is.dmod  = value by which to modulus destination register * is.dran  = range within which to contain destination register */void psub_ab(ce) /* cx = ax - bx */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[2]);    is.sval = ce->c.re[0];    is.sval2 = -ce->c.re[1];    is.dran = SoupSize;}/* void math(ce) *(is.dreg) = is.sval + is.sval2 + flaw(ce); * is.dreg  = destination register, where calculation will be stored * is.sval  = a value that will be added to is.sval2 and placed in dest reg * is.sval2 = a value that will be added to is.sval  and placed in dest reg * is.dmod  = value by which to modulus destination register * is.dran  = range within which to contain destination register */void psub_ac(ce) /* ax = ax - cx */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[0]);    is.sval = ce->c.re[0];    is.sval2 = -ce->c.re[2];    is.dmod = SoupSize;}/* void math(ce) *(is.dreg) = is.sval + is.sval2 + flaw(ce); * is.dreg  = destination register, where calculation will be stored * is.sval  = a value that will be added to is.sval2 and placed in dest reg * is.sval2 = a value that will be added to is.sval  and placed in dest reg * is.dmod  = value by which to modulus destination register * is.dran  = range within which to contain destination register */void pinc_a(ce) /* ax++ */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[0]);    is.sval = ce->c.re[0];    is.sval2 = 1;    is.dmod = SoupSize;}/* void math(ce) *(is.dreg) = is.sval + is.sval2 + flaw(ce); * is.dreg  = destination register, where calculation will be stored * is.sval  = a value that will be added to is.sval2 and placed in dest reg * is.sval2 = a value that will be added to is.sval  and placed in dest reg * is.dmod  = value by which to modulus destination register * is.dran  = range within which to contain destination register */void pinc_b(ce) /* bx++ */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[1]);    is.sval = ce->c.re[1];    is.sval2 = 1;    is.dmod = SoupSize;}/* void math(ce) *(is.dreg) = is.sval + is.sval2 + flaw(ce); * is.dreg  = destination register, where calculation will be stored * is.sval  = a value that will be added to is.sval2 and placed in dest reg * is.sval2 = a value that will be added to is.sval  and placed in dest reg * is.dmod  = value by which to modulus destination register * is.dran  = range within which to contain destination register */void pdec_c(ce) /* cx-- */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[2]);    is.sval = ce->c.re[2];    is.sval2 = -1;    is.dran = SoupSize;}/* void math(ce) *(is.dreg) = is.sval + is.sval2 + flaw(ce); * is.dreg  = destination register, where calculation will be stored * is.sval  = a value that will be added to is.sval2 and placed in dest reg * is.sval2 = a value that will be added to is.sval  and placed in dest reg * is.dmod  = value by which to modulus destination register * is.dran  = range within which to contain destination register */void pinc_c(ce) /* cx++ */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[2]);    is.sval = ce->c.re[2];    is.sval2 = 1;    is.dran = SoupSize;}/* void push(ce) ce->c.sp = ++ce->c.sp % STACK_SIZE; *               ce->c.st[ce->c.sp] = is.sval + flaw(ce); * is.sval = value to be pushed onto the stack */void ppushax(ce) /* push ax onto stack */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.sval = ce->c.re[0];}/* void push(ce) ce->c.sp = ++ce->c.sp % STACK_SIZE; *               ce->c.st[ce->c.sp] = is.sval + flaw(ce); * is.sval = value to be pushed onto the stack */void ppushbx(ce) /* push bx onto stack */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.sval = ce->c.re[1];}/* void push(ce) ce->c.sp = ++ce->c.sp % STACK_SIZE; *               ce->c.st[ce->c.sp] = is.sval + flaw(ce); * is.sval = value to be pushed onto the stack */void ppushcx(ce) /* push cx onto stack */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.sval = ce->c.re[2];}/* void push(ce) ce->c.sp = ++ce->c.sp % STACK_SIZE; *               ce->c.st[ce->c.sp] = is.sval + flaw(ce); * is.sval = value to be pushed onto the stack */void ppushdx(ce) /* push dx onto stack */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.sval = ce->c.re[3];}/* void pop(ce) *(is.dreg) = ce->c.st[ce->c.sp] + flaw(ce); *              if (!ce->c.sp) ce->c.sp = STACK_SIZE - 1; else --ce->c.sp; * is.dreg = destination register, where value popped off stack will go * is.dmod = value by which to modulus destination register * is.dran = range within which to contain destination register */void ppopax(ce) /* pop ax off of stack */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[0]);    is.dmod = SoupSize;}/* void pop(ce) *(is.dreg) = ce->c.st[ce->c.sp] + flaw(ce); *              if (!ce->c.sp) ce->c.sp = STACK_SIZE - 1; else --ce->c.sp; * is.dreg = destination register, where value popped off stack will go * is.dmod = value by which to modulus destination register * is.dran = range within which to contain destination register */void ppopbx(ce) /* pop bx off of stack */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[1]);    is.dmod = SoupSize;}/* void pop(ce) *(is.dreg) = ce->c.st[ce->c.sp] + flaw(ce); *              if (!ce->c.sp) ce->c.sp = STACK_SIZE - 1; else --ce->c.sp; * is.dreg = destination register, where value popped off stack will go * is.dmod = value by which to modulus destination register * is.dran = range within which to contain destination register */void ppopcx(ce) /* pop cx off of stack */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[2]);    is.dran = SoupSize;}/* void pop(ce) *(is.dreg) = ce->c.st[ce->c.sp] + flaw(ce); *              if (!ce->c.sp) ce->c.sp = STACK_SIZE - 1; else --ce->c.sp; * is.dreg = destination register, where value popped off stack will go * is.dmod = value by which to modulus destination register * is.dran = range within which to contain destination register */void ppopdx(ce) /* pop dx off of stack */Pcells  ce;{   is.iip = is.dib = 1;    if (is.eins->exec)        return ;    is.dreg = &(ce->c.re[3]);    is.dran = SoupSize;}/* void adr(ce) find address of a template * is.mode  = search mode: 1 = forward, 2 = backward, 0 = outward * is.mode2 =  preference: 1 = forward, 2 = backward, and return for *        direction found: 1 = forward, 2 = backward, 3 = both, 0 = none * is.dval  = starting address for forward search * is.dval2 = starting address for backward search * is.dreg  = destination register where target address will be stored * is.dreg2 = destination register where template size will be stored * is.dreg3 = destination register where offset of target will be stored * is.sval  = return address if template size = 0 * is.sval2 = template size, 0 = no template * is.sval3 = search limit, and return for distance actually searched * is.dmod  = modulus value for is.dreg * is.dmod2 = modulus value for is.dreg2 * is.dmod3 = modulus value for is.dreg3 * is.dran  = range to maintain for is.dreg * is.dran2 = range to maintain for is.dreg2 * is.dran3 = range to maintain for is.dreg3 */void ptjmp(ce) /* outward template jump */Pcells  ce;{   I32s    a, s = 0;    is.iip = is.dib = 1;    if (is.eins->exec)        return ;    a = ad(ce->c.ip + 1); /* a = address of start of template */    while(1) /* find size of template, s = size */    {   #if PLOIDY == 1	if(soup[ad(a + s)].inst != Nop0 &&           soup[ad(a + s)].inst != Nop1)#else /* PLOIDY > 1 */	if(soup[ad(a + s)][ce->d.tr].inst != Nop0 &&           soup[ad(a + s)][ce->d.tr].inst != Nop1)#endif /* PLOIDY > 1 */            break;        s++;    }    is.dreg  = &(ce->c.ip); /* destination register for address */    is.dreg2 = &(ce->c.re[3]); /* destination register for template size */    is.dreg3 = &BitBucket;    is.sval  = a;  /* if template size == 0, increment IP */    is.sval2 = s;  /* size of template */    is.sval3 = Search_limit;    is.dval  = ad(a + s + 1); /* start address for forward search */    is.dval2 = ad(a - s - 1); /* start address for backward search */    is.dmod  = SoupSize;    is.dran2 = SoupSize;    is.mode  = 0; /* outward jump */    is.mode2 = 1;    is.dib = 1;    is.iip = 0;}/* void adr(ce) find address of a template * is.mode  = search mode: 1 = forward, 2 = backward, 0 = outward * is.mode2 =  preference: 1 = forward, 2 = backward, and return for *        direction found: 1 = forward, 2 = backward, 3 = both, 0 = none * is.dval  = starting address for forward search * is.dval2 = starting address for backward search * is.dreg  = destination register where target address will be stored * is.dreg2 = destination register where template size will be stored * is.dreg3 = destination register where offset of target will be stored * is.sval  = return address if template size = 0 * is.sval2 = template size, 0 = no template * is.sval3 = search limit, and return for distance actually searched * is.dmod  = modulus value for is.dreg * is.dmod2 = modulus value for is.dreg2 * is.dmod3 = modulus value for is.dreg3 * is.dran  = range to maintain for is.dreg * is.dran2 = range to maintain for is.dreg2 * is.dran3 = range to maintain for is.dreg3 */void ptjmpb(ce) /* backward template jump */Pcells  ce;{   I32s    a, s = 0;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产iv一区二区三区| 亚洲成人av电影在线| 欧美成人激情免费网| 欧美在线观看18| 91福利社在线观看| 色久综合一二码| 欧美亚洲综合在线| 欧美久久久久久蜜桃| 91精品国产综合久久蜜臀| 欧美裸体bbwbbwbbw| 日韩丝袜美女视频| 久久综合久久久久88| 国产欧美在线观看一区| 亚洲图片另类小说| 一区二区在线观看不卡| 天堂成人国产精品一区| 美脚の诱脚舐め脚责91| 国产精品夜夜嗨| av资源网一区| 欧美精品高清视频| 精品成a人在线观看| 国产欧美日韩在线视频| 亚洲人妖av一区二区| 香蕉乱码成人久久天堂爱免费| 日韩精品亚洲专区| 国产成人免费视频精品含羞草妖精| 成人性色生活片免费看爆迷你毛片| 色综合色狠狠天天综合色| 91精品一区二区三区久久久久久 | 成人精品国产福利| aaa亚洲精品| 欧美一区二区三区在线观看| 久久久久97国产精华液好用吗| 中文字幕亚洲欧美在线不卡| 亚洲成a人片在线观看中文| 国产美女一区二区三区| 91久久香蕉国产日韩欧美9色| 欧美一区二区视频在线观看| 中文字幕av免费专区久久| 三级久久三级久久久| 国产激情偷乱视频一区二区三区| 色综合激情久久| 精品国产成人系列| 视频在线在亚洲| 91一区二区在线| 久久欧美一区二区| 日本vs亚洲vs韩国一区三区二区| 成人精品gif动图一区| 日韩一区国产二区欧美三区| 亚洲色图清纯唯美| 丁香网亚洲国际| wwww国产精品欧美| 日韩电影在线观看网站| 色网综合在线观看| 中文一区在线播放| 国产精品996| www亚洲一区| 久久69国产一区二区蜜臀| 欧美男人的天堂一二区| 一区二区在线观看不卡| 91在线精品一区二区| 国产视频一区二区在线观看| 日本vs亚洲vs韩国一区三区| 91九色最新地址| 国产精品色在线| 成人午夜激情影院| 国产日韩欧美高清| 国产91对白在线观看九色| 精品国产网站在线观看| 美女国产一区二区三区| 欧美大度的电影原声| 日韩在线一区二区三区| 欧美精品777| 日韩影视精彩在线| 在线不卡欧美精品一区二区三区| 亚洲夂夂婷婷色拍ww47| 91福利在线播放| 亚洲国产日韩综合久久精品| 欧美在线观看18| 天天操天天综合网| 欧美一区二区在线看| 日韩成人一区二区三区在线观看| 欧美一区在线视频| 精品影视av免费| 国产无人区一区二区三区| 成人丝袜18视频在线观看| 中文字幕一区二区三区不卡在线| 成人激情文学综合网| 亚洲欧洲成人av每日更新| 91美女福利视频| 亚洲国产精品久久久久婷婷884| 在线精品国精品国产尤物884a| 亚洲成年人网站在线观看| 91精品国产欧美一区二区| 九九热在线视频观看这里只有精品| 欧美精品一区二区三区久久久| 国产福利不卡视频| 国产精品乱子久久久久| 91国产福利在线| 亚洲裸体xxx| 日韩视频在线你懂得| 成人看片黄a免费看在线| 亚洲精品国产a| 色网综合在线观看| 国产专区欧美精品| 亚洲国产成人私人影院tom| 色婷婷综合视频在线观看| 亚洲国产wwwccc36天堂| 久久久噜噜噜久噜久久综合| 91官网在线免费观看| 国产中文字幕精品| 一区二区三区电影在线播| 日韩一区二区三区精品视频| 国产成人精品网址| 亚洲电影在线播放| 国产精品视频一二三| 欧美精选午夜久久久乱码6080| 国产一区二区精品在线观看| 亚洲第一在线综合网站| 日本一区二区久久| 欧美一区二区三区在线观看 | 在线视频欧美精品| 激情丁香综合五月| 亚洲一级二级三级| 精品国产乱子伦一区| 91老司机福利 在线| 国产传媒一区在线| 蜜臀91精品一区二区三区| 亚洲一区在线观看免费| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 国产精品传媒入口麻豆| 欧美一区二区三区男人的天堂| 成人av在线一区二区三区| 日韩国产精品大片| 亚洲欧美精品午睡沙发| 国产精品午夜电影| 欧美精品一区二区蜜臀亚洲| 欧美日韩成人综合在线一区二区| 国产成人av电影在线观看| 久久综合综合久久综合| 天天综合日日夜夜精品| 亚洲国产成人av| 亚洲成人激情社区| 日精品一区二区| 亚洲蜜臀av乱码久久精品蜜桃| 日本一区二区三区在线观看| 久久免费看少妇高潮| 91精品国产欧美日韩| 欧美日韩国产高清一区二区三区| 日本精品免费观看高清观看| 91网站在线播放| 日本道精品一区二区三区| 日本黄色一区二区| 欧美日韩高清在线播放| 欧美久久一二区| 欧美不卡视频一区| 久久先锋资源网| 国产精品黄色在线观看| 日韩美女久久久| 亚洲高清视频中文字幕| 日本最新不卡在线| 经典三级在线一区| 成人午夜av影视| 一本色道a无线码一区v| 精品视频全国免费看| 欧美一级视频精品观看| 久久亚洲综合色| 日韩美女精品在线| 天天免费综合色| 国产精品一区二区视频| 不卡的av电影在线观看| 91国偷自产一区二区三区成为亚洲经典 | 91啪亚洲精品| 在线观看国产日韩| 91精品午夜视频| 欧美一激情一区二区三区| 久久蜜桃av一区二区天堂 | 1000部国产精品成人观看| 一区二区三区四区不卡在线| 丝袜国产日韩另类美女| 国产麻豆成人精品| 色综合天天综合网天天看片| 制服.丝袜.亚洲.另类.中文| 久久久久久亚洲综合| 亚洲免费视频中文字幕| 免费xxxx性欧美18vr| 成人黄色一级视频| 欧美另类变人与禽xxxxx| 国产女同互慰高潮91漫画| 亚洲国产婷婷综合在线精品| 国产精品一级黄| 欧美美女一区二区| 中文字幕乱码一区二区免费| 婷婷丁香久久五月婷婷| 丁香婷婷综合激情五月色| 欧美精品一卡两卡| 国产精品成人免费精品自在线观看| 视频一区免费在线观看| 91亚洲精华国产精华精华液| 精品嫩草影院久久|