OK240.2-Firmware/Type/.vscode/tasks.json

31 lines
822 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "make TYPE (sjasmplus)",
"type": "shell",
"command": "sjasmplus",
"args": [
"--fullpath",
"--nofakes",
"--i8080",
"type.asm"
],
"problemMatcher": {
"owner": "sjasmplus",
"fileLocation": "autoDetect",
"pattern": {
"regexp": "^(.*)\\((\\d+)\\):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"severity": 3,
"message": 4
}
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}