Re: A83: Need a little help
[Prev][Next][Index][Thread]
Re: A83: Need a little help
Your asm.bat should be at least:
@echo off
echo ----- Assembling %1 for the TI-83 Plus...
echo #define TI83P >temp.z80
echo #define ION >>temp.z80
if exist %1.z80 type %1.z80 >>temp.z80
if exist %1.asm type %1.asm >>temp.z80
tasm -80 -i -b -l temp.z80 %1.bin
if errorlevel 1 goto ERRORS
devpac8x %1
echo ----- Success!
echo TI-83 Plus version is %1.8xp
goto DONE
:ERRORS
echo ----- There were errors.
:DONE
del temp.z80 > nul
del %1.bin > nul
To compile a program named HELLO.ASM, type in ASM HELLO at a dos prompt in
the folder containing TASM and the asm.bat file.
and your headers should be:
#include "ion.inc"
#ifdef TI83P
.org progstart-2
.db $BB,$6D
#else
.org progstart
#endif
Of course I use a different header to compile my programs for the
TI82/83/83+, by using a custom include file that has everything for each
calculator.
>From: Jeff Wendling <capinobv@helpdesk.zaz.net>
>Reply-To: assembly-83@lists.ticalc.org
>To: assembly-83@lists.ticalc.org
>Subject: A83: Need a little help
>Date: Mon, 15 Jan 2001 09:31:58 -0800 (PST)
>
>
>Im a beginner in assembling for the 83+. I understand most of the assembly
>commands. THe only thing i really dont get is compiling my assembly code!
>For some reason the TASM never works and the OBJ stuff dosent either. I
>think it has to do with my beginning? So i was sondering if somone could
>tell me the proper header for 83+ (compatale for mirage if you know) and
>how to compile it. Thanks!
>
>_____________________________________________________________
>Free #HelpDesk Email, get yours: http://helpdesk.zaz.net/email/
>Hosted by zaz Internet Services: http://www.zaz.net/
>
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com
Follow-Ups: