vscode编写c 如何查看汇编_如何在Visual Studio中运行和调试汇编代码?

在Visual Studio中运行与调试汇编代码
本文介绍了如何在Visual Studio 2010中编写和调试汇编代码。通过创建空解决方案,添加MASM支持,设置链接器选项,并提供一个简单的汇编代码示例,展示了成功运行和调试汇编程序的步骤。

最简单的方法, 就是在VS2010的C++文件里直接使用__asm{} 直接写汇编代码. 实例代码如下:

#includeusing namespacestd;

intmain()

{

chara[10] = "1234";

__asm{

push eax

push edx

push ecx

lea eax, a

mov cl,byte ptr [eax]

mov dl,byte ptr [eax]

movzx ecx,cl

movzx edx,dl

shr ecx,4

shl edx,4

or ecx,edx

mov byte ptr [eax],cl

inc eax

mov cl,byte ptr [eax]

pop ecx

pop edx

pop eax

}

}

另外是书写彻底的汇编代码, 具体步骤如下, 就不翻译了.

How to Use VS2010 to Write Assembly

===============================

Using Visual Studio to write an assembly program may be tricky. Specific steps are to be followed in order to be able to create your first MASM x86 assembly program with VS2010 (images from the configuration steps mentioned below are taken from here):

Expand the ‘Other Project Types‘ tree, Select ‘Visual Studio Solutions‘, and create a new ‘Blank Solution‘.

File | Add | New Project…

Expand the ‘Other Languages‘, ‘Visual C++‘, ‘General‘ section and create a new ‘Empty Project‘.

Now right click on the Project in the Solution Explorer and select ‘Build Customizations…‘.

Tick the ‘masm‘ box and say OK.

Add a new file to the project with the .asm extension by right clicking on the Project in the Solution Explorer and selecting ‘Add | New Item…‘ then ‘Text File‘. Enter a filename ending with .asm (e.g. test.asm). Press OK.

Now (and if you skipped the last steps, this won’t work) right click on the Project and select ‘Properties‘. You should see a dialog like this (Note the MASM item at the bottom of the tree). If you don’t, then something went wrong.

There are a few critical things to set up in the Linker options in order to get it to work:

Set the following property to Windows or Console as appropriate:

Configuration Properties > Linker > System> SubSystem

Set the entry point to the name of your main method (as per the END directive – see code):

Configuration Properties > Linker > Advanced > EntryPoint

All you have to do now is write some code and run it.

遵循上面的步骤, 我成功的运行并调试了一段汇编代码.下面是我的源代码和调试截图.

.586              ;Target processor.  Use instructions for Pentium class machines

.MODEL FLAT, C    ;Use the flat memory model. Use C calling conventions

.STACK            ;Define a stack segment of 1KB (Not required for this example)

.DATA             ;Create a near data segment.  Local variables are declared after

;this directive (Not required for this example)

.CODE             ;Indicates the start of a code segment.

main PROC

push    ebp

mov     ebp,esp

mov     edx, 80002418h

xor     eax,eax

mov     ecx,20h

SFT1:

shr     edx,1

jnc     LOOP1

inc     eax

LOOP1:

loop    SFT1

pop     ebp

ret

main ENDP

END

参考资料

======================

Assembly Programming with Visual Studio 2010

Assembly sample source codes

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值