├── .gitignore ├── LICENSE ├── README.md ├── compile.bat ├── parsec-vdd.h ├── start-widecar.ps1 ├── widecar.cpp └── widecar.manifest /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.obj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClassicOldSong/Widecar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClassicOldSong/Widecar/HEAD/README.md -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClassicOldSong/Widecar/HEAD/compile.bat -------------------------------------------------------------------------------- /parsec-vdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClassicOldSong/Widecar/HEAD/parsec-vdd.h -------------------------------------------------------------------------------- /start-widecar.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClassicOldSong/Widecar/HEAD/start-widecar.ps1 -------------------------------------------------------------------------------- /widecar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClassicOldSong/Widecar/HEAD/widecar.cpp -------------------------------------------------------------------------------- /widecar.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClassicOldSong/Widecar/HEAD/widecar.manifest --------------------------------------------------------------------------------