A83: Re: zasm/tokens.inc question (source code)
[Prev][Next][Index][Thread]
A83: Re: zasm/tokens.inc question (source code)
Your problem is still the elusive dot...
you need to add a dot in front of "LIST"
and take *away* the dot in front of "ret"
----------
> From: Heydude27@aol.com
> To: assembly-83@lists.ticalc.org
> Subject: A83: zasm/tokens.inc question (source code)
> Date: Monday, February 23, 1998 6:10 PM
>
>
> 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
change to ".LIST"
> .org 9327
>
> call _clrLCDFull ; if you want your program to pause after it
clears the screen you can add "call _getkey"
>
> .ret
change to " ret"
> .end
>
>
>
> The TI-83 ASM Help File
>
> If you have any suggestions I would appreciate it.
> Heydude27