Re: A86: normal input


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

Re: A86: normal input





On Tue, 9 Jun 1998 15:34:25 EDT ComAsYuAre@aol.com writes:
>
>in an asm program, how do you get a free-floating cursor that gives 
>the person
>the type of flexibility given in a BASIC program?  (access to custom 
>menu,
>list menu, math menu, etc)
>
>also, how can you input the data directly into op1?

there's a routine off of _exec_pg3.  it gets something (number, string,
matrix, whatever) into op1, equivalent to input.
  ld a,$0d
  ld (_ASAP_IND),a
  call _exec_pg3

this will also copy the text buffer to the screen and print _ioPrompt
first.  you should probly either load a 0 or a 0-terminated string to
here.  oh, and it turns on the run indicator.

-josh

>
>examples of this are ZReduce and ZFactor.  unfortunately, ZFactor 
>source
>hasn't been released and ZReduce source has no comments in the input 
>part.
>
>
>any help would be appreciated.
>

_____________________________________________________________________
You don't need to buy Internet access to use free Internet e-mail.
Get completely free e-mail from Juno at http://www.juno.com
Or call Juno at (800) 654-JUNO [654-5866]


References: