module BinData::Int

def bytes_per_word(nbits)

def bytes_per_word(nbits)
  (nbits % 32).zero? ? 4 : (nbits % 16).zero? ? 2 : 1
end