* Add gitattributes to handle line endings. * Import the unmodified LTEMM source. From https://www.lo-tech.co.uk/wiki/LTEMM.EXE. * Add DOSBox and TASM for build. * Add build script for LTEMM. * Modity LTEMM driver for XTMax. * Import the unmodified SDPP source. From https://forum.vcfed.org/index.php?threads/sd-card-to-parallel-port-driver-for-msdos-ver-1-1.42008/. * Add Borland C++ 3.1 (Minimal) for build. * Add build script for SDPP. * Modify SDPP driver for XTMax. * Commit pre-built binaries for LTEMM and SDPP. * Reorganize the drivers into a new folder.
16 lines
192 B
Plaintext
16 lines
192 B
Plaintext
[autoexec]
|
|
@ECHO OFF
|
|
CLS
|
|
MOUNT C .
|
|
MOUNT D ..\Driver_Build_Tools\BCC31
|
|
SET PATH=D:\
|
|
C:
|
|
MAKE > LOG.TXT
|
|
IF ERRORLEVEL 1 GOTO :ERROR
|
|
EXIT
|
|
:ERROR
|
|
TYPE LOG.TXT
|
|
ECHO Log saved to LOG.TXT
|
|
PAUSE
|
|
EXIT
|