摘要: #include #include int sal_asm(int x,int y) { __asm{ mov eax,x; mov cl,byte ptr y; sal eax,cl; } } int shl_asm(int x,int y) { __asm{ mov eax,x; mo... 阅读全文
posted @ 2017-10-12 23:34 persuit 阅读(580) 评论(0) 推荐(0) 编辑