p4raw-id: //depot/perl@14889
next if ! $val{ $p }{ $r };
printf "$type ${head}_%02x_%02x [256] = {\n", $p, $r;
for(my $c = 0; $c < 256; $c++){
- print "\t", defined $val{$p}{$r}{$c} ? "($type)".$val{$p}{$r}{$c} : $null;
+ print "\t", defined $val{$p}{$r}{$c}
+ ? "($type)".$val{$p}{$r}{$c} : $null;
print ',' if $c != 255;
print "\n" if $c % 8 == 7;
}