aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json18
1 files changed, 17 insertions, 1 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index db94c63..c280971 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -2,7 +2,7 @@
"version": "2.0.0",
"tasks": [
{
- "label": "Boot in QEMU",
+ "label": "Debug-Boot in QEMU",
"command": "qemu-system-x86_64",
"type": "shell",
"args": [
@@ -18,6 +18,22 @@
},
"group": "none",
"problemMatcher": []
+ },
+ {
+ "label": "Boot in QEMU",
+ "command": "qemu-system-x86_64",
+ "type": "shell",
+ "args": [
+ "-m",
+ "32M",
+ "-cdrom",
+ "${workspaceFolder}/build/Debug/teachos.iso"
+ ],
+ "presentation": {
+ "reveal": "always"
+ },
+ "group": "none",
+ "problemMatcher": []
}
]
} \ No newline at end of file