A83: Re: zasm/tokens.inc question (source code)
[Prev][Next][Index][Thread]
A83: Re: zasm/tokens.inc question (source code)
You need to add a few spaces to the call command so TASM can recognize it.
-----Original Message-----
From: Heydude27@aol.com <Heydude27@aol.com>
To: assembly-83@lists.ticalc.org <assembly-83@lists.ticalc.org>
Date: Tuesday, 24 February 1998 11:22
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