Question in title. Is it?
Cause pre-increment just adds to the value, so I suppose it is only 1 instruction (not sure if that instruction takes a single cycle too, though).
Post-increment loads the value into a temporary copy, adds to it and then stores back.
Is pre-increment therefore atomic??
Haven't tried anything yet, just a question.