├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE.md ├── assets └── readme.md ├── readme.md ├── run.ps1 ├── src ├── main.cpp └── main.hpp ├── tools └── dosbox │ └── readme.md └── watcom-vscode.code-workspace /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/LICENSE.md -------------------------------------------------------------------------------- /assets/readme.md: -------------------------------------------------------------------------------- 1 | You may place any relevant assets in this directory -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/readme.md -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/run.ps1 -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/src/main.hpp -------------------------------------------------------------------------------- /tools/dosbox/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/tools/dosbox/readme.md -------------------------------------------------------------------------------- /watcom-vscode.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbeam/watcom-vscode/HEAD/watcom-vscode.code-workspace --------------------------------------------------------------------------------