@coded_artist @LukeAlmighty @SuperDicq
Modern CPUs are also superscalar (which means they execute multiple instructions in parallel) and out-of-order (which means they can reorder instructions that don't depend on each others' results of side effects).
A serial dependency between two instructions means they have to be executed in the same order they appear in the code, because one depends on the other.
6/