Re: pointers to variables
- Posted by bernie Aug 02, 2009
- 1207 views
Nick:
I am afraid that I can't comment on your code because
I am not much of a mathematician or expert in complex math.
I took a look your fastfill in the archive and complex math in
the archive.
As you look at my code; keep in mind the routines are compile as
you declare and define them. You do not have to think about
poking stuff into the sequence. You just have to pass the parameters to the routine.
If you have three parameters:
function foo(atom parm1, atom parm2, atom parm3) You accesss them in your Asm code in the function like this: Asm("foo_", "mov eax, [ebp+08] "& -- param3 "mov ebx, [ebp+12] "& -- param2 "mov ecx, [ebp+16] "& -- param1