Re: A86: Re: Menus


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

Re: A86: Re: Menus



It might be $41, followed by a null byte, followed by a three byte absolute address, and then a zero terminated string.  I think that will probably work; I don't know if you need to put something at the beginning of your code.

Trey Jazz wrote:

 do u know how to make it run a program when you select something from the menu? 
-----Original Message-----
From: Dux Gregis <assets@eden.rutgers.edu>
To: assembly-86@lists.ticalc.org <assembly-86@lists.ticalc.org>
Date: Sunday, January 18, 1998 6:04 PM
Subject: Re: A86: Re: MenusHere it is:

#include "asm86.h"
#include "ti86asm.inc"

.org $d748

 ld de,$d678
 ld hl,string
 call _mov10B
 ret
string:
 .db $60
 .db "Asm",0

.end

Pretty simple, eh?

caymran wrote:

 Wow, can you post a source? Thanks,Caymran
-----Original Message-----
From: Dux Gregis <assets@eden.rutgers.edu>
To: assembly-86@lists.ticalc.org <assembly-86@lists.ticalc.org>
Date: Friday, January 16, 1998 2:08 PM
Subject: Re: A86: Re: MenusIf this doesn't work you may have to directly change it's name in the VAT.
This is a different program though:
demo
 
 
Follow-Ups: References: