Hi Jringley,
Your PCI-6534 is not the best board to use for high precision clock generation. However, it is possible to do what you are looking for with the 6534.
The 6534 has a 20 MHz clock. This means that the smallest clock cycle you can have is 50ns. So, you can do pattern generation at 20 MHz. The following patter will give you 4 pulses of different length with an offset in when the pulse starts. Pulse 2 starts 100ns after pulse 1, pulse 3 starts 150ns after pulse 1 and pulse 4 starts 250 ns after pulse 1. Then you just need to figure out how many timebase (20 MHz) pulses you need for each of them to be high and fill the trailing zeros. You can set this up to be a continous pattern generation and repeat the cycle.
Line
1 2 3 4
-------
1 0 0 0
1 0 0 0
1 1 0 0
1 1 1 0
1 1 1 0
1 1 1 1
1 1 1 1
. . . .
0 1 1 1
0 1 1 1
0 0 1 1
0 0 1 1
0 0 0 1
0 0 0 1
0 0 0 0
Now, this isn't the best way to do things. The best way to do it would be to set up 4 counter outputs (pulse generation) with a 6602 board. That would give you better precision and easier programming. However, the above method should work with a 6534. If you want a strobe signal and data lines to be synched up with your clock pulses, you can simply make it have more lines. You can set the bits to have the lines high or low wherever you want.
-Sal