1
0
mirror of synced 2026-01-13 15:27:51 +00:00
Matthieu Bucchianeri 422a4306f2
Improvements to the SD Card and EMS drivers. (#31)
* Refactor SD driver the IO to XTMax.

* Refactor the EMS driver to support 8MB.
2025-01-19 19:04:05 -08:00

21 lines
580 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build in DOSBox",
"type": "shell",
"command": "..\\Driver_Build_Tools\\DOSBox\\DOSBox.exe -conf Build.conf && copy *.EXE ..\\",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}