A83: Re: Re: Re: Need assistance w/simple problem


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

A83: Re: Re: Re: Need assistance w/simple problem




Check out my tutorials :)...that's tutorial 25. Well, just to save you some
time...here:

call _zerooop1
ld hl,op1+1
ld (hl),'L'     ; or any other var
call _rclvarsym ; op1 / op2 -> value
call _convop1
ex   de,hl
call _disphl

That will get L.  HTH,

James.

==========================================
E-mail matthews@tkb.att.ne.jp              ICQ: 7413754
http://home.att.ne.jp/gold/tomcat21/index.html
http://hyperion.advanced.org/18242/
==========================================
-----Original Message-----
From: Francis Huang <fhuang@annapolis.crosswinds.net>
To: assembly-83@lists.ticalc.org <assembly-83@lists.ticalc.org>
Date: Thursday, December 24, 1998 6:49 AM
Subject: A83: Re: Re: Need assistance w/simple problem


>
>>But if that's your
>>ENTIRE asm program, then you've not initialized h anywhere, so you'll get
>>some funky results
>
>No, that was a code fragment.  The proggie works great :).
>I want to make the program display different characters based on a
>variable's value (1="X", 2="_", 3="+", etc), but the _rcl function only
>works for x and y, not say, _rclI.  How would I access the I variable
>without changing x or y?  List or matrix, perhaps?
>
>