A86: Re: calling an asm prog from another
[Prev][Next][Index][Thread]
A86: Re: calling an asm prog from another
Call exec_assembly. Here is an example:
#include asm86.h
#include ti86asm.inc
.org $D748
call _clrLCD
ld hl,Prog-1
rst 20h
call _exec_assembly
ret
Prog: .db 06,"ProgName"
.end
END
--------------
Jbrett
tbarwick@esn.net
http://ww2.esn.net/~tbarwick
I just added a TI-86 page, Check it out!!!
-----Original Message-----
From: BlAsTo1414@aol.com <BlAsTo1414@aol.com>
To: assembly-86@lists.ticalc.org <assembly-86@lists.ticalc.org>
Date: Thursday, September 17, 1998 10:03 PM
Subject: A86: calling an asm prog from another
>
>I want to create multiple progs to put on my calc so I dont have a bunch of
>huge progs. is there a way to call one prog from another?
>
>BlAsTo1414
>