淡定薯片

文章
4
资源
0
加入时间
3年1月12天

C++ 嵌入汇编

1.代码 #include #include using namespace std;int main(){ int a=0; int b=0; __asm { mov a,1 push 10 pop b } cout<<a<<endl; cout<<b<<endl; __asm { PUSH AX POP AX } system("p