implement ch32v003 decoder

This commit is contained in:
Crispy 2024-04-12 22:26:24 +02:00
parent dc26664372
commit 0e95a0a1bb
9 changed files with 2082 additions and 4 deletions

20
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,20 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/../ch32v003fun/ch32v003fun"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cppStandard": "c++14",
"intelliSenseMode": "linux-clang-x64",
"compilerArgs": [
"-DCH32V003FUN_BASE"
],
"configurationProvider": "ms-vscode.makefile-tools"
}
],
"version": 4
}