draft transfer implementation
This commit is contained in:
51
.vscode/c_cpp_properties.json
vendored
51
.vscode/c_cpp_properties.json
vendored
@@ -1,23 +1,30 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "DKP aarch64",
|
||||
"includePath": [
|
||||
"${env:DEVKITPRO}/devkitA64/aarch64-none-elf/include/**",
|
||||
"${env:DEVKITPRO}/devkitARM/arm-none-eabi/include/**",
|
||||
"${env:DEVKITPRO}/devkitA64/lib/gcc/aarch64-none-elf/13.2.0/include/**",
|
||||
"${env:DEVKITPRO}/libnx/include/**",
|
||||
"${env:DEVKITPRO}/portlibs/switch/include/**",
|
||||
"${workspaceFolder}/include/**",
|
||||
"${workspaceFolder}/lib/Plutonium/include/**",
|
||||
"/opt/homebrew/opt/lz4/include/**"
|
||||
],
|
||||
"defines": ["SWITCH", "__SWITCH__", "DEBUG", "__BSD_VISIBLE"],
|
||||
"compilerPath": "${env:DEVKITPRO}/devkitA64/bin/aarch64-none-elf-g++",
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++14",
|
||||
"intelliSenseMode": "linux-gcc-arm64"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
"configurations": [
|
||||
{
|
||||
"name": "DKP aarch64",
|
||||
"includePath": [
|
||||
"${env:DEVKITPRO}/devkitA64/aarch64-none-elf/include/**",
|
||||
"${env:DEVKITPRO}/devkitARM/arm-none-eabi/include/**",
|
||||
"${env:DEVKITPRO}/devkitA64/lib/gcc/aarch64-none-elf/13.2.0/include/**",
|
||||
"${env:DEVKITPRO}/libnx/include/**",
|
||||
"${env:DEVKITPRO}/portlibs/switch/include/**",
|
||||
"${workspaceFolder}/include/**",
|
||||
"${workspaceFolder}/lib/Plutonium/include/**",
|
||||
"/usr/local/include/**",
|
||||
"/opt/homebrew/opt/lz4/include/**",
|
||||
"/opt/devkitpro/devkitA64/aarch64-none-elf/include/machine"
|
||||
],
|
||||
"defines": [
|
||||
"SWITCH",
|
||||
"__SWITCH__",
|
||||
"DEBUG",
|
||||
"__BSD_VISIBLE"
|
||||
],
|
||||
"compilerPath": "${env:DEVKITPRO}/devkitA64/bin/aarch64-none-elf-g++",
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++14",
|
||||
"intelliSenseMode": "linux-gcc-arm64"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
53
.vscode/settings.json
vendored
53
.vscode/settings.json
vendored
@@ -3,30 +3,23 @@
|
||||
"string.h": "c",
|
||||
"stdlib.h": "c",
|
||||
"switch.h": "c",
|
||||
"psm.h": "c",
|
||||
"vector": "cpp",
|
||||
"any": "cpp",
|
||||
"optional": "cpp",
|
||||
"array": "cpp",
|
||||
"mutex": "cpp",
|
||||
"any": "cpp",
|
||||
"atomic": "cpp",
|
||||
"barrier": "cpp",
|
||||
"bit": "cpp",
|
||||
"*.tcc": "cpp",
|
||||
"bitset": "cpp",
|
||||
"cctype": "cpp",
|
||||
"cfenv": "cpp",
|
||||
"charconv": "cpp",
|
||||
"chrono": "cpp",
|
||||
"cinttypes": "cpp",
|
||||
"clocale": "cpp",
|
||||
"cmath": "cpp",
|
||||
"codecvt": "cpp",
|
||||
"compare": "cpp",
|
||||
"complex": "cpp",
|
||||
"concepts": "cpp",
|
||||
"condition_variable": "cpp",
|
||||
"coroutine": "cpp",
|
||||
"csetjmp": "cpp",
|
||||
"csignal": "cpp",
|
||||
"cstdarg": "cpp",
|
||||
"cstddef": "cpp",
|
||||
"cstdint": "cpp",
|
||||
@@ -34,7 +27,6 @@
|
||||
"cstdlib": "cpp",
|
||||
"cstring": "cpp",
|
||||
"ctime": "cpp",
|
||||
"cuchar": "cpp",
|
||||
"cwchar": "cpp",
|
||||
"cwctype": "cpp",
|
||||
"deque": "cpp",
|
||||
@@ -44,20 +36,16 @@
|
||||
"set": "cpp",
|
||||
"string": "cpp",
|
||||
"unordered_map": "cpp",
|
||||
"unordered_set": "cpp",
|
||||
"vector": "cpp",
|
||||
"exception": "cpp",
|
||||
"expected": "cpp",
|
||||
"algorithm": "cpp",
|
||||
"functional": "cpp",
|
||||
"iterator": "cpp",
|
||||
"memory": "cpp",
|
||||
"memory_resource": "cpp",
|
||||
"numeric": "cpp",
|
||||
"optional": "cpp",
|
||||
"random": "cpp",
|
||||
"ratio": "cpp",
|
||||
"regex": "cpp",
|
||||
"source_location": "cpp",
|
||||
"string_view": "cpp",
|
||||
"system_error": "cpp",
|
||||
"tuple": "cpp",
|
||||
@@ -65,37 +53,48 @@
|
||||
"utility": "cpp",
|
||||
"format": "cpp",
|
||||
"fstream": "cpp",
|
||||
"future": "cpp",
|
||||
"initializer_list": "cpp",
|
||||
"iomanip": "cpp",
|
||||
"iosfwd": "cpp",
|
||||
"iostream": "cpp",
|
||||
"istream": "cpp",
|
||||
"latch": "cpp",
|
||||
"limits": "cpp",
|
||||
"mutex": "cpp",
|
||||
"new": "cpp",
|
||||
"numbers": "cpp",
|
||||
"ostream": "cpp",
|
||||
"ranges": "cpp",
|
||||
"scoped_allocator": "cpp",
|
||||
"semaphore": "cpp",
|
||||
"shared_mutex": "cpp",
|
||||
"span": "cpp",
|
||||
"spanstream": "cpp",
|
||||
"sstream": "cpp",
|
||||
"stacktrace": "cpp",
|
||||
"stdexcept": "cpp",
|
||||
"stdfloat": "cpp",
|
||||
"stop_token": "cpp",
|
||||
"streambuf": "cpp",
|
||||
"syncstream": "cpp",
|
||||
"thread": "cpp",
|
||||
"typeindex": "cpp",
|
||||
"cinttypes": "cpp",
|
||||
"typeinfo": "cpp",
|
||||
"valarray": "cpp",
|
||||
"variant": "cpp",
|
||||
"filesystem": "cpp",
|
||||
"plutonium": "cpp"
|
||||
"plutonium": "cpp",
|
||||
"barrier": "cpp",
|
||||
"cfenv": "cpp",
|
||||
"complex": "cpp",
|
||||
"coroutine": "cpp",
|
||||
"csetjmp": "cpp",
|
||||
"csignal": "cpp",
|
||||
"cuchar": "cpp",
|
||||
"unordered_set": "cpp",
|
||||
"expected": "cpp",
|
||||
"regex": "cpp",
|
||||
"source_location": "cpp",
|
||||
"future": "cpp",
|
||||
"latch": "cpp",
|
||||
"scoped_allocator": "cpp",
|
||||
"shared_mutex": "cpp",
|
||||
"spanstream": "cpp",
|
||||
"stacktrace": "cpp",
|
||||
"stdfloat": "cpp",
|
||||
"syncstream": "cpp",
|
||||
"typeindex": "cpp"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user