mirror of https://github.com/wwarthen/RomWBW.git
6 changed files with 62 additions and 1 deletions
@ -0,0 +1,14 @@ |
|||||
|
@echo off |
||||
|
setlocal |
||||
|
|
||||
|
set TOOLS=../../../Tools |
||||
|
set PATH=%TOOLS%\tasm32;%PATH% |
||||
|
set TASMTABS=%TOOLS%\tasm32 |
||||
|
|
||||
|
echo Building Dev... |
||||
|
tasm -t80 -g3 -fFF dev.asm dev.com %dev.lst || exit /b |
||||
|
|
||||
|
copy /Y dev.com ..\..\..\Binary\Apps\ || exit /b |
||||
|
rem copy /Y *.ovr ..\..\..\Binary\Apps\ || exit /b |
||||
|
rem copy /Y *.hlp ..\..\..\Binary\Apps\ || exit /b |
||||
|
rem copy /Y *.doc ..\..\..\Binary\Apps\ || exit /b |
||||
@ -0,0 +1,7 @@ |
|||||
|
@echo off |
||||
|
setlocal |
||||
|
|
||||
|
if exist Dev.com del Dev.com |
||||
|
if exist *.hex del *.hex |
||||
|
if exist *.lst del *.lst |
||||
|
if exist *.zip del *.zip |
||||
@ -0,0 +1,7 @@ |
|||||
|
OBJECTS = Dev.com *.ovr *.hlp Dev.doc |
||||
|
DEST = ../../../Binary/Apps |
||||
|
TOOLS = ../../../Tools |
||||
|
OTHERS = *.hex |
||||
|
NODELETE = *.ovr *.doc *.hlp |
||||
|
|
||||
|
include $(TOOLS)/Makefile.inc |
||||
@ -0,0 +1,32 @@ |
|||||
|
;=============================================================================== |
||||
|
; Dev - Developement Stub |
||||
|
;=============================================================================== |
||||
|
; |
||||
|
; AUTHOR: |
||||
|
; |
||||
|
; Usage: |
||||
|
; |
||||
|
;_______________________________________________________________________________ |
||||
|
; |
||||
|
; Change Log: |
||||
|
; |
||||
|
;_______________________________________________________________________________ |
||||
|
; |
||||
|
; ToDo: |
||||
|
; |
||||
|
;_______________________________________________________________________________ |
||||
|
; |
||||
|
;=============================================================================== |
||||
|
; Definitions |
||||
|
;=============================================================================== |
||||
|
; |
||||
|
; |
||||
|
;=============================================================================== |
||||
|
; Code Section |
||||
|
;=============================================================================== |
||||
|
; |
||||
|
; |
||||
|
.org $100 |
||||
|
ret |
||||
|
.end |
||||
|
|
||||
Loading…
Reference in new issue