Hello,
I am doing a hand code assembly. I want to know where should the local variables be allocated. Should it be on the stack ?
I have the code in following format. Both func1 and func2 are supposed to be hand coded assembly.
main ()
{
func1();
}
func1()
{
int array 1[10];
func2(&array1[8]);
}
How do i manage the passing parameter and the allocate array1[]
Thanks