Starting to build a codebase for messing with assembly generation compatible with yasm

This commit is contained in:
2024-11-29 14:31:38 -05:00
parent 531daa38c1
commit 80c830b59d
18 changed files with 26940 additions and 1 deletions

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

@ -0,0 +1,37 @@
{
"configurations": [
{
"name": "Win32 msvc",
"includePath": [
"${workspaceFolder}/source/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"INTELLISENSE_DIRECTIVES"
],
"windowsSdkVersion": "10.0.19041.0",
"compilerPath": "C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.29.30133/bin/HostX64/x64/cl.exe",
"intelliSenseMode": "msvc-x64",
"compileCommands": "${workspaceFolder}/project/build/compile_commands.json"
},
{
"name": "Win32 clang",
"includePath": [
"${workspaceFolder}/source/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"INTELLISENSE_DIRECTIVES"
],
"windowsSdkVersion": "10.0.19041.0",
"compilerPath": "C:/Users/Ed/scoop/apps/llvm/current/bin/clang++.exe",
"intelliSenseMode": "windows-clang-x64",
"compileCommands": "${workspaceFolder}/project/build/compile_commands.json"
}
],
"version": 4
}

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

@ -0,0 +1,9 @@
{
"files.associations": {
"*.rmd": "markdown",
"pop_ignores.inline.h": "c",
"basic_types.h": "c",
"push_ignores.inline.h": "c",
"memory.h": "c"
}
}