On 8/12/2015 11:45 AM, k...@cranehome.info wrote:
> This seems like a question that ought to be easy to answer but so far my 
> searching has not turned up a clear one.  I need a NOP on occasion to 
> balance out timing on things and thus far every iteration I have tried of 
> NOPx results in 'instruction illegal for core version'.   I'm having to do 
> dummy register loads now which looks kind of goofy.   Is there a NOP 
> instruction that works in PRU assembly?

I don't think there's a specific NOP, but since the PRU doesn't have
flag bits (except for carry) to worry about, you can alias any of a
number of instructions to be a NOP:

  AND r1, r1, r1
   OR r1, r1, r1
  XOR r1, r1, 0
  MOV r1, r1

...and so on.

-- 
Charles Steinkuehler
char...@steinkuehler.net

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to