Is there some sort of plugin in Visual Studio code (mac) that can run basic assembly, for example the following:
.section .text
.globl _start
_start:
movl $1, %eax
movl $0, %ebx
int $0x80
As it is, currently I am ssh'ing into a linux server in order to run this assembly but I was hoping it would be possible to build/link/execute this assembly from within VS code, perhaps with a plugin.