[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [avr-gcc-list] Asm Operator for Address Negation
From: |
Schwichtenberg, Knut |
Subject: |
RE: [avr-gcc-list] Asm Operator for Address Negation |
Date: |
Thu, 10 Aug 2006 13:18:36 +0200 |
Gents,
there is a tiny but relevant difference between "[]" which are used for
arrays and "()" which are used for parameter passing to functions and so
on.
So please change:
> for (i = 0; i < 2; i++)
> permsCheck(i);
into
> for (i = 0; i < 2; i++)
> permsCheck[i];
and your trouble will be gone.
Knut