Integrate psxreadmap

This commit is contained in:
2023-08-25 06:31:00 +02:00
parent da80e99b91
commit 09e6aef606
4 changed files with 51 additions and 1 deletions

View File

@@ -22,6 +22,17 @@
}
}
},
{
"label": "read memory map",
"type": "shell",
"command": "psxreadmap.exe ${input:output memory map} application/bin/PSX-${input:build profile}/#{ProjectName}.elf",
"problemMatcher": [],
"options": {
"env": {
"PATH": "${env:JABY_ENGINE_PATH}/bin;${env:PATH}"
}
}
}
],
"inputs": [
{
@@ -44,6 +55,13 @@
"options": ["all", "clean", "rebuild"],
"default": "all",
"description": "the build target"
},
{
"id": "output memory map",
"type": "pickString",
"options": ["", "-o application/bin/#{ProjectName}.map"],
"default": "",
"description": "Output a memory map"
}
]
},