[A83] Re: Symbolic Manipulation!!


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

[A83] Re: Symbolic Manipulation!!




Answer to first question, I think not, at least, not in the sense of
function(arg1,arg2,..,argn)

in assembly you can however do:
ld hl,arg1
ld de,arg2
ld bc,arg3
call function

where function is:
funtion:
push hl   ; the pushes and pops aren't really needed, only if you want to
preserve the values
push de
push bc

..do something...

pop bc
pop de
pop hl
ret

or, in basic (OT) you could do
arg1->x
arg2->y
..bunch more...

asm(prgmDOSOMETHING WITH IT
vs.
prgmBASIC_DO_SOMETHING_WITH_THEM

As for your second quiestion: please elaborate...



--Peter Martijn



Gabriel Hughes wrote:

> Esta bien mis amigos.  Yo nessecito ayuda ahora!!!!  My people come on
> someone out there has got to be able to help me.  I've been trying with
> strings and It has turned out to be a very frustrating experience. Well
> then there is one other request I have.  For any of you out there who own
> an 89 or have used one know about user defined funtions.  Is there anyway
> for me to create them and enable them to be used in expresions with out
> having to write a whole new opperating system.  OK I lied here.  I have a
> couple of other requests.  Is there any way to hotwire prot recode
> whatever you want to call it and run it on an 83+.  It doesn't have to be
> the whole thing just parts. Thanks to all who
> have helped me and I will thank now all who will help me in the future.
>
> Adios,
> -DG-
>
> On Wed, 28 Mar 2001 Mike3465@aol.com wrote:
>
> >
> > I'm not sure if most people know what you mean by that...
> >
> >





References: