Neil's problem:
I will have no difficulty learning to use program however I need to use as many as five outputs on one line. I can not find the method in the tutorial. Great program
Hi Neil, the instruction you need is probably OutputM. This will update up to 8 contiguous outputs simultaneously. For example, the following program will produce a 5-bit binary count sequence in outputs 9 through 13
Loop: IncX ;Inc counter
Push ;Make a copy
LoadX %11111 ;Select bits to be output
OutputM 9 ;Send to o/p 9 ...
Pause 50 ;delay
GoTo Loop ;repeat
