Ocean-240.2-Emulator/examples/hello/.vscode/tasks.json
2026-04-01 14:57:08 +03:00

23 lines
552 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "make (sjasmplus)",
"type": "shell",
"command": "sjasmplus",
"args": [
"--i8080",
"--sld=main.sld",
"--raw=main.obj",
"--fullpath",
"--lst",
"main.asm"
],
"problemMatcher": "$problem-matcher-sjasmplus",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}