first commit

This commit is contained in:
2024-04-25 00:29:08 +02:00
parent 90b62b9d90
commit 4c3cdc2ab2
4 changed files with 118 additions and 1 deletions

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

@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "exporter sym-lib",
"type": "debugpy",
"request": "launch",
"program": "exporter.py",
"args": [".\\sym-lib-table", ".\\symbols.txt"],
"console": "integratedTerminal",
"justMyCode": false
}
]
}