class BinData::BitAligned::BitAlignedIO

def readbytes(n)

def readbytes(n)
  n.times.inject("") do |bytes, i|
    bytes << @io.readbits(8, :big).chr
  end
end