mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
549 B
15 lines
549 B
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../../../Tools
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t80 -g3 -fFF i2cscan.asm i2cscan.com i2cscan.lst || exit /b
|
|
tasm -t80 -g3 -fFF rtcds7.asm rtcds7.com rtcds7.lst || exit /b
|
|
tasm -t80 -g3 -fFF i2clcd.asm i2clcd.com i2clcd.lst || exit /b
|
|
tasm -t80 -g3 -ff srom.asm srom.com srom.lst || exit /b
|
|
|
|
copy /Y i2c*.com ..\..\..\..\Binary\Apps\Test\ || exit /b
|
|
copy /Y rtcds7*.com ..\..\..\..\Binary\Apps\Test\ || exit /b
|
|
copy /Y srom.com ..\..\..\..\Binary\Apps\Test\ || exit /b
|
|
|