RE: A83: Plain Jump


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

RE: A83: Plain Jump




BTW, Sam, you might want to reconsider the keys for PJ83. I know that you
probably wanted to keep it like the TI-85/6 versions, but the keys are
really confusing on the 83, especially the teacher key. Since PJ exits to
the shell when Y= is pressed, and SOS starts a program when Y= is pressed,
the result is a immediate return to the game when the teacher key is
pressed, if you hold it down too long. It usually takes me 2 or 3 tries to
use the teacher key feature.

Instead, you could make the MODE or the DEL key be the teacher key (maybe
the DEL key being the teacher key and the MODE key being a pause feature),
and make CLEAR be the exit key. This is a common layout for most TI-83
games, so most people are used to it already. When I first played PJ83, I
accidentally pressed MODE a bunch of times, expecting to pause, but
accidentally exiting.

Just my thoughts,

Eric Sun
http://calc.ml.org/



-----Original Message-----
From: owner-assembly-83@lists.ticalc.org
[mailto:owner-assembly-83@lists.ticalc.org]On Behalf Of Joe
Wingbermuehle
Sent: Tuesday, September 29, 1998 1:34 PM
To: assembly-83@lists.ticalc.org
Subject: Re: A83: Plain Jump



How about this:

ld hl,levelName
ld bc,9  ; zero isn't really needed....
ld de,op1
ldir
ld hl,260
jp $448a

levelName:
$06,"PLANLVL1",0

Joe Wingbermuehle
http://www.usmo.com/~joewing/

-----Original Message-----
From: Evil Sam <evil_sam@hotmail.com>
To: assembly-83@lists.ticalc.org <assembly-83@lists.ticalc.org>
Date: Monday, September 28, 1998 9:05 PM
Subject: Re: A83: Plain Jump


>
>>There's a rom call that creates a program:
>>
>>createprog =$448A ; create program with type/name in op1 with hl bytes
>>
>>btw, I'm just too lazy to make an editor for my programs hehe
>>
>>Joe Wingbermuehle
>>http://www.usmo.com/~joewing/
>>
>
>
>   What do you mean by name/type? Like this?:
>CreateProg:
> ld     de,NameProg
> ld     (OP1),de
> ld     hl, 260
> jp   $448a
>
>NameProg:
> .db "planlvl1",0
>
>   That doesn't work. Is there a certain way I need to load the name
>into OP1?
>
>______________________________________________________
>Get Your Private, Free Email at http://www.hotmail.com
>


References: