' Assembly Language Tutorial with the SX Microcontroller ' DataStreamForSSIB.bs2 ' This BASIC Stamp program just writes out two ' data streams to test the SSIB '{$STAMP BS2} '{$PBASIC 2.5} W1=0 W2=$FFFF DO SEROUT 15\9,84,[DEC W1,","] SEROUT 8\10,84,[DEC W2,","] W1=W1+1 W2=W2-1 PAUSE 5 LOOP