mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:33:12 -06:00
- Add kbdtest, cvdtest, and cvdonly test programs. They apply to MBC platform only. - Display more boot info in CVDU and KBD drivers. - Separate floppy and hard disk content definition files.
13 lines
377 B
Batchfile
13 lines
377 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../../../Tools
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t180 -g3 -fFF vdctest.asm vdctest.com vdctest.lst || exit /b
|
|
tasm -t180 -g3 -fFF vdconly.asm vdconly.com vdconly.lst || exit /b
|
|
|
|
copy /Y vdctest.com ..\..\..\..\Binary\Apps\Test\ || exit /b
|
|
copy /Y vdconly.com ..\..\..\..\Binary\Apps\Test\ || exit /b
|