mirror of
https://github.com/Minres/RISCV-VP.git
synced 2025-12-17 08:51:35 +00:00
80 lines
2.7 KiB
JSON
80 lines
2.7 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "gdbtarget",
|
|
"request": "attach",
|
|
"name": "Attach GDB to VP",
|
|
"program": "./fw/hello-world/hello.elf",
|
|
"imageAndSymbols": {
|
|
"symbolFileName": "./fw/hello-world/hello.elf"
|
|
},
|
|
"target": {
|
|
"port": "10000"
|
|
},
|
|
"cwd": "${workspaceRoot}",
|
|
"gdb": "riscv64-unknown-elf-gdb",
|
|
"openGdbConsole": true,
|
|
"presentation": {
|
|
"hidden": false,
|
|
"group": "FW Debug",
|
|
"order": 2
|
|
}
|
|
},
|
|
{
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "32bit VP with gdbserver",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
|
|
"arguments": "--isa 'rv32gc|msu_vp' -v INFO --disass -f fw/hello-world/hello.elf -g 10000",
|
|
"openGdbConsole": true
|
|
},
|
|
{
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "32bit VP",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
|
|
"arguments": "--isa 'rv32gc_msu' -v INFO --disass -f fw/hello-world/hello.elf",
|
|
"initCommands": ["info break"]
|
|
},
|
|
{
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "64bit VP with gdbserver",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
|
|
"arguments": "--isa 'rv64gc|msu_vp' -v INFO --disass -f fw/hello-world/hello.elf -g 10000",
|
|
"openGdbConsole": true
|
|
},
|
|
{
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "TGC5 VP",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
|
|
"arguments": "-v DEBUG -t 3 --isa 'tgc5c|mu_p' -f fw/hello-world/hello.elf",
|
|
"openGdbConsole": true
|
|
},
|
|
{
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "TGC5 VP (asmjit)",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
|
|
"arguments": "-v DEBUG --isa 'tgc5c|mu_p' --backend asmjit -f fw/hello-world/hello.elf",
|
|
"openGdbConsole": true
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "FW-Debug 32bit",
|
|
"configurations": ["32bit VP with gdbserver", "Attach to VP"]
|
|
},
|
|
{
|
|
"name": "FW-Debug 64bit",
|
|
"configurations": ["64bit VP with gdbserver", "Attach to VP"]
|
|
}
|
|
]
|
|
} |