Re: A83: Compiler?


[Prev][Next][Index][Thread]

Re: A83: Compiler?



Here use this to compile
from the dos prompt type
zasm FILE_NAME (in caps without extension)
your file name has to have a z80 extension, but don't type it in
Make sure that TASM is in the same directory as ZASM.bat and that you have
the tasm80.tab
@echo off
tasm -t80 -i %1.z80
if errorlevel 1 goto ERR
83lnk %1.obj %1.83p %1
echo.
del *.obj
del *.lst
goto XIT
:ERR
echo Geez... error! =(
del *.obj
del *.lst
:XIT