Structure for 16-bit register

/* 16-bit register (big endian format) */
typedef union {
 word w;
 
 struct {

		byte high,low;

    }b;

 }TWREG;