Skip to content

Instantly share code, notes, and snippets.

@taichi-ishitani
Created September 23, 2022 14:15
Show Gist options
  • Save taichi-ishitani/7b95ea475d90352e1be0547df7e4fbff to your computer and use it in GitHub Desktop.
Save taichi-ishitani/7b95ea475d90352e1be0547df7e4fbff to your computer and use it in GitHub Desktop.
rbdb の設定
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "rdbg",
"name": "Debug current spec file with rdbg",
"request": "launch",
"command": "rspec",
"cwd": "${workspaceFolder}/${input:rggenSubProject}",
"script": "${file}",
"args": [],
"askParameters": false
},
{
"type": "rdbg",
"name": "Attach with rdbg",
"request": "attach"
}
],
"inputs": [
{
"type": "pickString",
"id": "rggenSubProject",
"description": "Which RgGen sub project do you want to use?",
"options": [
"rggen",
"rggen-core",
"rggen-duh",
"rggen-spreadsheet-loader",
"rggen-c-header",
"rggen-default-register-map",
"rggen-markdown",
"rggen-systemverilog",
"rggen-vhdl",
"rggen-verilog"
],
"default": "rggen"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment