From ff81b5438f280a59ca1825bfdf120d8f256bd154 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Sat, 7 Oct 2023 17:15:31 +0200 Subject: x86_64: implement very simple VGA text output --- .vscode/tasks.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to '.vscode') 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 -- cgit v1.2.3