68060 can despatch two instructions at the same time, I don't think it decodes them at the same time.
The M68060 dispatches, decodes, executes, completes and writes the results of 2 instructions at the same time.
This applies to most of the common simple simple instructions.
It does not apply to gigantic complicated instructions or rare instructions.
Furthermore, it does 3 instructions at the same time, as long as 1 of the instructions is a correctly predicted branch. Loops are common structures of computer programming. The branch at the bottom of the loop will be correctly predicted the 2nd thru the nth times it is executed.
I don't know if it will correctly predict the LOOP branch the 1st time it is encountered. But if you have a loop from 1 to 1000 then it will be correctly predicted 999 times out of 1000 which is a fairly good rate.
