I need to send a 5 us pulse to a pin. I'm using a 16F88 at 8 MHz and need to keep processing overhead down.

Which is faster, using PULSOUT or this:

PIN=1
PAUSEUS 5
PIN=0

I have to do this at different (and varying) times on 5 different pins.

Russ