?? test3.cpp
字號:
// test3.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#define a esi
#define b edi
#define c edx
#define d ebx
#define tmp1 eax
#define tmp2 ecx
#define FF(a, b, c, d, x, s, ac) \
__asm mov tmp1,b \
__asm and tmp1,c \
__asm mov tmp2,b \
__asm not tmp2 \
__asm and tmp2,d \
__asm or tmp2,tmp1 \
__asm lea a,[tmp2+a+ac] \
__asm add a,x \
__asm rol a,s \
__asm add a,b \
int main(int argc, char* argv[])
{
unsigned int x=0;
__asm mov a,0x1
__asm mov b,0x2
__asm mov c,0x3
__asm mov d,0x4
FF(a, b, c, d, x, 0, 0);
return 0;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -