Ah, ja, alles klar.
Also: die zwei fraglichen Bits sind sowieso immer 0, als kein Problem
Du hast also:
Code:
DIM DWort as WORD   ' das sind die Bits  D0 --- D13 
                                 ' T0 u. T1 sind da automatisch als 0 dabei 
DIM Sinfo as WORD     ' B0, B1, B2, TB   R0, R1, R2, S   

'  eine möglichkeit, wenn du die 3 Bytes einzeln ausgeben willst

DIM sendebytes(4) as byte at DWort OVERLAY
DIM index as Byte

FOR index = 1 TO 3 
       *sende  Sendebytes(Index)         
NEXT

'  andere möglichkeit, ganz einfach z.B.

Printbin Sendebytes(1) ; 3