From 7ca06f642a26b10767704c5cd1697e7b97ae61ff Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 12 Dec 2023 18:37:00 +0100 Subject: [PATCH] Add debug config for 32-bit AES --- HWBTutorials.code-workspace | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/HWBTutorials.code-workspace b/HWBTutorials.code-workspace index 35458cd..44fcd61 100644 --- a/HWBTutorials.code-workspace +++ b/HWBTutorials.code-workspace @@ -94,6 +94,15 @@ "cwd": "${workspaceFolder:AES}" }, "problemMatcher": [] + }, + { + "label": "Build 32-bit AES Project", + "type": "shell", + "command": "make", + "options": { + "cwd": "${workspaceFolder:AES 32-bit}" + }, + "problemMatcher": [] } ] }, @@ -111,6 +120,15 @@ "args": [], "cwd": "${workspaceFolder:AES}", "preLaunchTask": "Build AES Project" + }, + { + "type": "lldb", + "request": "launch", + "name": "Launch 32-bit AES Project", + "program": "${workspaceFolder:AES 32-bit}/bin/aes", + "args": [], + "cwd": "${workspaceFolder:AES 32-bit}", + "preLaunchTask": "Build 32-bit AES Project" } ], "compounds": []