1
0
mirror of synced 2026-01-30 13:37:44 +00:00

Add BootROM support.

This commit is contained in:
Matthieu Bucchianeri
2025-01-12 00:36:46 -08:00
parent 94d0e0dd46
commit 36275e33e5
7 changed files with 265 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build with NASM",
"type": "shell",
"command": ".\\build.cmd",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}