class SlowFat::ExtendedBiosParameterBlock

ExtendedBiosParameterBlock holds information from an EBPB.

Attributes

boot_signature[R]
fs_type[R]
physical_drive_nbr[R]
volume_label[R]
volume_serial[R]

Public Class Methods

new(data) click to toggle source
# File lib/slowfat/bootsect.rb, line 69
def initialize(data)
  (@physical_drive_nbr, @flags, @boot_signature, @volume_serial, @volume_label, @fs_type) = data.unpack('CCCVa11a8')
end