Files
asm_game/.vscode/tasks.json
2025-02-03 21:32:00 +00:00

14 lines
314 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "asm64",
"type": "shell",
"command": "mkdir -p out; mkdir -p bin; nasm -F dwarf -g -f elf64 game.s -o out/game.o; ld -m elf_x86_64 -o bin/game out/game.o;",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}