Home | History | Annotate | Download | only in util

Lines Matching refs:rom

24 use Option::ROM qw ( :all );
39 my @roms = map { my $rom = new Option::ROM; $rom->load($_); $rom } @romfiles;
44 foreach my $rom ( @roms ) {
47 $baserom->{length} += $rom->{length};
50 merge_entry_points ( $baserom->{init}, $rom->{init}, $offset );
53 merge_entry_points ( $baserom->{bofm_header}, $rom->{bofm_header}, $offset );
57 my $rom_pci = $rom->pci_header;
80 my $rom_pnp = $rom->pnp_header;
87 # Fix checksum for this ROM segment
88 $rom->fix_checksum();
90 $offset += $rom->length;
96 foreach my $rom ( @roms ) {
97 $rom->save ( "-" );