hello world

This commit is contained in:
2025-02-03 21:32:00 +00:00
parent 5e28619330
commit 534a7ca677
6 changed files with 58 additions and 1 deletions

14
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"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
}
}
]
}