I have a word (16 bits) that I want to break into 4 bytes, i.e.

word = dddd cccc bbbb aaaa

convert to

byte1 = 0000 aaaa
byte2 = 0000 bbbb
byte3 = 0000 cccc
byte4 = 0000 dddd

any sugestions on how I would go about doing this?