freebsd-dev/sys/pci/locate.pl
1999-08-30 14:41:09 +00:00

32 lines
556 B
Perl
Executable File

#!/usr/bin/perl
$errpos = hex($ARGV[0])/4;
$ofs=0;
open (INPUT, "cc -E ncr.c 2>/dev/null |");
while ($_ = <INPUT>)
{
last if /^struct script \{/;
}
while ($_ = <INPUT>)
{
last if /^\}\;/;
($label, $size) = /ncrcmd\s+(\S+)\s+\[([^]]+)/;
$size = eval($size);
if ($label) {
if ($errpos) {
if ($ofs + $size > $errpos) {
printf ("%4x: %s\n", $ofs * 4, $label);
printf ("%4x: %s + %d\n", $errpos * 4, $label, $errpos - $ofs);
last;
}
$ofs += $size;
} else {
printf ("%4x: %s\n", $ofs * 4, $label);
}
}
}