Vladimir Lipskiy <[EMAIL PROTECTED]> wrote: >> > foo($var1, $var2, $var3, ... , $var23); >> >> I would expect I2=11, I1=12
> D'oh, I suspected it should be I2=11, I1=23. No. You have the first 11 parameters in P5..P15 (I2=11). Then you have 12 more, which go into the overflow array P3 (I1=12) > ... It seems to me that > I finally got what was considered to be the parameter list. So, when > you say PARAMETER LIST, you have in mind all the I5-I15, N5-N15, > S5-S15, P3, P5-P15 registers, don't you? The parameter list are all the function parameters. When you have an unprototyped sub, I5.., S5,.. N5... are unused. > ... That is, I should place in I1 > the number of these registers I filled. I1 ... Number of items in the overflow/parameter array P3. leo