On Tue, Jan 09, 2001 at 06:11:00PM +0100, Harald Koerfgen wrote: > > No problem - Done - doesnt work > > Same here on my /260 (R4400SC V4.0). Neither inserting four "sll $0,$0,1" nor > four "nop" seem to work. The branch, on the other hand, does. Note the ssnops only make sense on superscalar CPUs, so not on the R4000. Also note that the branch is equivalent to three nops. One for the branch instruction itself, the two more for instructions in the pipeline that get killed. On the R4600 / R500 where the hazard is only a single instruction the branch is equivalent to only a single nop. So while unobvious the branch is a rather neat idea. Ralf