Skip to content

Instantly share code, notes, and snippets.

@takamame0205
Last active August 5, 2019 05:28
Show Gist options
  • Select an option

  • Save takamame0205/86ea4d1e62cd16082f02fbd09e406257 to your computer and use it in GitHub Desktop.

Select an option

Save takamame0205/86ea4d1e62cd16082f02fbd09e406257 to your computer and use it in GitHub Desktop.
VS CodeからSDCCを呼び出すための設定ファイル
{
"version": "2.0.0",
"tasks": [
{
"label": "sdcc",
"type": "shell",
"command": "_sdcc",
"args": [
"main"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment