any fans of the Bascom AVR ?

Regarding Bascom, there can be a disadvantage. You can not perform "complicated" math on a single line.
You can not have something like:
a=b*(c+d)
Such an operation have to be decomposed in two lines (parts):
a=c+d
a=a*b
which looks somehow ugly and unfriendly.

1 Like