On Mon, 13 May 1996, Roger Books wrote: > There are several versions of the jump command that do a conditional jump > based on the status of several flags. Maybe he's talking about the Parallax pseudo-8051 assembler. Actually, in PIC-native code there are no CONDITIONAL branch commands. There are however several conditional "SKIP" commands. The idea is that you'd usually follow the conditional skip with a "goto" command, which would be skipped if the condition isn't met. You get the same effect but you have to think a little differently if you want to optimize the code. Rick Miller