Hello, if there is code like
if (condition) bla = blub;
than the timming can be different if condition is true or false.
How to make timing equal on both path?
Is
else dummy = blub;
a good idea?
Are there other ways?