A86: Asm Real # Input
[Prev][Next][Index][Thread]
A86: Asm Real # Input
ld a,0Dh
ld (_asap_ind),a
call _exec_pg3
That is the code to get input into OP1. Fisrt of all, what is _asap_ind?
Second does any body know an easy way to change the input string or where it
is stored in memory?
The following code is what is used to display OP1. Incase anybody cares, I
found out that call _formReal changes OP2, OP3, OP4, OP5, and OP6. That
caused some real problems in my ZFactor program which relies on displaying
many numbers in a loop.
ld a,48
call _formReal
ld hl,_OP3
call _vputs
~Chris Hawkins