A83: Re: zasm/tokens.inc question (source code)


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

A83: Re: zasm/tokens.inc question (source code)




The beginning of your source file should be as follows:

.NOLIST
#define equ .equ
#define EQU .equ
#define end .end
#define END .end
#include "ti83asm.inc"
#include "tokens.inc"
.LIST
.org 9327h

-----Original Message-----
From: Heydude27@aol.com <Heydude27@aol.com>
To: assembly-83@lists.ticalc.org <assembly-83@lists.ticalc.org>
Date: Monday, February 23, 1998 5:12 PM
Subject: A83: zasm/tokens.inc question (source code)


>
>Some one wanted to see the source
>
>I'm trying to assemble a program and every time I try to compile it with
Zasm
>it gives me this.
>
>C:\WINLINK\83\assembly\zasm TEST
>TASM Z80 Assembler.       Version 3.0.1  June, 1994.
> Copyright (C) 1985-1994 by Speech Technology Incorporated
>tasm: pass 1 complete.
>tokens.inc line 0001: unrecognized instruction.          (LIST)
>tasm: pass 2 complete.
>tasm: Number of errors = 1
>Geez... error! =(
>
>The source code is...
>
>.NOLIST
>#define equ .equ
>#define EQU .equ
>#define end .end
>#include "ti83asm.inc"
>#include "tokens.inc"
>LIST
>.org 9327
>
> call _clrLCDFull
>
>.ret
>.end
>
>
>
>The TI-83 ASM Help File
>
>If you have any suggestions I would appreciate it.
>Heydude27