mirror of
https://github.com/Minres/RISCV-VP.git
synced 2025-12-17 17:01:35 +00:00
120 lines
4.2 KiB
JSON
120 lines
4.2 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "gdbtarget",
|
|
"request": "launch",
|
|
"name": "Debug hello world 32bit",
|
|
"program": "fw/hello-world/hello.elf",
|
|
"imageAndSymbols": {
|
|
"symbolFileName": "fw/hello-world/hello.elf"
|
|
},
|
|
"target": {
|
|
"server": "${workspaceFolder}/build/RelWithDebInfo/src/riscv-vp",
|
|
"serverParameters": ["--isa", "rv32gc_msu", "-v", "INFO", "-f", "fw/hello-world/hello.elf", "-g", "10000"],
|
|
"watchServerProcess": true,
|
|
"port": "10000"
|
|
},
|
|
"cwd": "${workspaceRoot}",
|
|
"gdb": "riscv64-unknown-elf-gdb",
|
|
"openGdbConsole": false,
|
|
"presentation": {
|
|
"hidden": false,
|
|
"group": "FW Debug",
|
|
"order": 2
|
|
},"initCommands": ["b main"]
|
|
},
|
|
{
|
|
"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": false,
|
|
"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' -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"
|
|
},
|
|
{
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "64bit VP with gdbserver",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
|
|
"arguments": "--isa 'rv64gc_msu' -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' -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' --backend asmjit -f fw/hello-world/hello.elf",
|
|
"openGdbConsole": true
|
|
},
|
|
{
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "RISCV-VP report ISA",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
|
|
"arguments": "--isa ?",
|
|
"openGdbConsole": true
|
|
},
|
|
{
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "RISCV-SIM report ISA",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceFolder}/build/Debug/dbt-rise-riscv/riscv-sim",
|
|
"arguments": "--isa ?",
|
|
"openGdbConsole": true
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "FW-Debug 32bit",
|
|
"configurations": ["32bit VP with gdbserver", "Attach GDB to VP"]
|
|
},
|
|
{
|
|
"name": "FW-Debug 64bit",
|
|
"configurations": ["64bit VP with gdbserver", "Attach GDB to VP"]
|
|
}
|
|
]
|
|
} |