是否可以使用 Visual Studio 编写 intel 汇编?

发布于 2024-12-27 02:25:47 字数 196 浏览 1 评论 0 原文

正如标题所言,是否可以在 Visual Studio 中编写汇编代码?

我正在寻找一个易于使用的 IDE 来编写英特尔汇编语言。几个月前我看了几个 IDE,除非它们需要大量的配置设置(我将示例复制并粘贴到 IDE 中),否则它们不会工作......

必须有一个与 VS 非常相似的简单 IDE,您可以在其中使用编写你的程序集,选择CPU然后执行?

As the title states really, is it possible to write assembly code in visual studio?

Im looking for an easy to use IDE for writing intel assembly language. I looked at a few IDEs a few months ago and unless they required lots of configuration settings (I copy and pasted examples into the IDE) they wouldnt work......

There must be a simple IDE very similar to VS where you can write your assembly, pick CPU and then execute?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苦行僧 2025-01-03 02:25:47

Visual Studio 中的内联汇编器并不可靠,但您可以将 Visual Studio 与 MASM(Microsoft 宏)结合使用汇编器) 编写直接的汇编程序。

在汇编中编写打开窗口、设置输出等的“粘合”代码相当困难痛苦,所以您可能会发现用 C++ 编写大部分程序,而用汇编语言编写几个文件会更舒服。这样,您就可以从直接汇编中编写简单的测试函数开始,然后从 C++ 框架中调用它们。

The inline assembler in Visual Studio isn't reliable, but you can use Visual Studio in conjunction with MASM (the Microsoft Macro Assembler) to write straight assembly programs.

Writing the "glue" code that opens a window, sets up output, etc in assembly is rather painful, so you may find it more comfortable to write most of your program in C++, and just a couple of files in assembly. That way you can start by writing simple test functions in straight assembly, and call them from your C++ framework.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文