Neue Architektur

This commit is contained in:
2025-10-12 19:06:28 +02:00
commit bdee19419d
120 changed files with 2706 additions and 0 deletions

42
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,42 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch STCompiler.Compiler",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/STCompiler.Compiler/bin/Debug/net8.0/STCompiler.Compiler",
"args": ["${workspaceFolder}/STCompiler.Compiler/input.st", "${workspaceFolder}/STCompiler.Compiler/output.bin"],
"cwd": "${workspaceFolder}/STCompiler.Compiler",
"console": "integratedTerminal"
},
{
"name": "Launch STCompiler.Disassembler",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/STCompiler.Disassembler/bin/Debug/net8.0/STCompiler.Disassembler",
"args": ["${workspaceFolder}/STCompiler.Compiler/output.bin"],
"cwd": "${workspaceFolder}/STCompiler.Disassembler",
"console": "integratedTerminal"
},
{
"name": "Launch STCompiler.Simulator",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/STCompiler.Simulator/bin/Debug/net8.0/STCompiler.Simulator",
"args": ["${workspaceFolder}/STCompiler.Compiler/output.bin"],
"cwd": "${workspaceFolder}/STCompiler.Simulator",
"console": "integratedTerminal"
},
{
"name": "Attach to .NET",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}

4
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"csharp.suppressDotnetRestoreNotification": true,
"dotnet.defaultSolution": "${workspaceFolder}/STCompiler.sln"
}

37
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,37 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": ["build", "${workspaceFolder}/STCompiler.sln"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$msCompile"]
},
{
"label": "run:compiler",
"type": "process",
"command": "dotnet",
"args": ["run", "--project", "${workspaceFolder}/STCompiler.Compiler/STCompiler.Compiler.csproj", "--", "${workspaceFolder}/STCompiler.Compiler/input.st", "${workspaceFolder}/STCompiler.Compiler/output.bin"],
"presentation": { "reveal": "always", "panel": "shared" }
},
{
"label": "run:disassembler",
"type": "process",
"command": "dotnet",
"args": ["run", "--project", "${workspaceFolder}/STCompiler.Disassembler/STCompiler.Disassembler.csproj", "--", "${workspaceFolder}/STCompiler.Compiler/output.bin"],
"presentation": { "reveal": "always", "panel": "shared" }
},
{
"label": "run:simulator",
"type": "process",
"command": "dotnet",
"args": ["run", "--project", "${workspaceFolder}/STCompiler.Simulator/STCompiler.Simulator.csproj", "--", "${workspaceFolder}/STCompiler.Compiler/output.bin"],
"presentation": { "reveal": "always", "panel": "shared" }
}
]
}