怎么用visual studio 2010编写汇编语言?

2024-12-16 01:40:01
推荐回答(1个)
回答1:

在c/c++源文件中这样写就可以了
_asm
{

这里写汇编程序
mov eax, dword ptr [a]
push eax

}