Create Simulator target scaffold

This commit is contained in:
Lukas Höppner
2026-08-09 16:29:38 +02:00
parent 2f48b3efc8
commit 7ea52cb96a
14 changed files with 275 additions and 101 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Nova64 Simulator",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "CMake: build",
"program": "${workspaceFolder}/simulator/bin/Debug/net8.0/Nova64Simulator.dll",
"args": [],
"cwd": "${workspaceFolder}/simulator",
"console": "integratedTerminal"
}
]
}