1
0
mirror of synced 2026-01-12 00:02:46 +00:00
Matthieu Bucchianeri 0fbbc0070c
Add support for DOS Upper Memory Blocks (UMBs). (#38)
* Import unmodified USE!UMBS source.

From https://forum.vcfed.org/index.php?threads/loading-dos-high-on-a-xt.32320/

* Customize the UMB Driver prompts.

* Refactor memory management. Allow activation of EMS/UMB on demand.

* Update the XTEMM and XTUMBS drivers to map their ranges.

* Add instructions for all the drivers.
2025-03-07 22:00:26 -08:00

21 lines
533 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 with NASM",
"type": "shell",
"command": ".\\build.cmd && copy *.SYS ..\\",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}