gpt4 book ai didi

assembly - 在 Visual Studio 代码中运行 asm

转载 作者:行者123 更新时间:2023-12-04 04:24:05 27 4
gpt4 key购买 nike

Visual Studio 代码(mac)中是否有某种插件可以运行基本程序集,例如以下内容:

.section .text
.globl _start
_start:
movl $1, %eax
movl $0, %ebx
int $0x80

实际上,目前我正在通过 ssh 连接到 linux 服务器以运行此程序集,但我希望可以从 VS 代码中构建/链接/执行此程序集,也许使用插件。

最佳答案

你可以做一个任务来组装和链接你的代码,之后,你可以使用 gdb extension调试您的代码。

为了让这个过程更快,如果你不知道怎么做,你可以使用 .vscode folder .

当您使用 AT&T 语法时,您需要使用 gas 选项来运行代码。

如果你还没有 gdb,你可以打开终端并执行:brew install gdb 安装它.

关于assembly - 在 Visual Studio 代码中运行 asm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58253227/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com