[A83] Re: ti83 / ti83+ compilation


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

[A83] Re: ti83 / ti83+ compilation



Depending on your assembler, the EQU and END directives might not be
compatible with your assembler's directives.  When I use the TI83ASM.INC
file in my assembly programs, I always start my .z80 or .asm file with:

.NOLIST
#define end .end
#define END .end
#define equ .equ
#define EQU .equ
#include "ti83asm.inc"
.LIST

where end, END, equ, and EQU are directives present in the include file, and
.end and .equ are directives that my assembler understands.

Jeff

----- Original Message -----
From: "Martin" <iemandiemand@xs4all.nl>
To: <assembly-83@lists.ticalc.org>
Sent: Saturday, February 01, 2003 7:29 AM
Subject: [A83] ti83 / ti83+ compilation


> Hi,
>
> This is probably a stupid question but I ask it anyway. I've just made an
> ti83+ asm program in zds with the ti83plus.inc file and want to make a
> ti83- version. But I can't find a ti83.inc on ti's site and the
ti83asm.inc
> that I found didn't work right in zds when I tried it. Could somebody tell
> me the best way to compile it as an ti83- program.
>
> Thanks, Martin
>



Follow-Ups: References: