| Address | Register | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 | Reset | Description |
| 0x00000001 | REG0000 | TEMP | STOP | START | 'h14 | TEMPORARY REG. |
| Address | Register | 15 | 14 | 13 | 12 | 11 | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 | Reset | Description |
| 0x00000100 | FUSE0 | F_1 | F_0 | 'h0000 | FUSE0. |
####
use HTML::TableExtract;
my $file = 'temp.html';
@headers = qw( Address Register 15 14 13 12 11 10 9 8 7 6 5);
print " \n h:@headers:\n";
$te = new HTML::TableExtract( keep_html=>1,headers => \@headers);
$te->parse_file($file);
@tcount1 = $te->counts(0);
print " tcount1 : @tcount1:\n";
####
@headers = qw( Address Register 15 14 13 12 11 10 9 8 7 6);
####
@headers = qw( Address Register 15 14 13 12 11 10 9 8 7 6 5);
####
@headers = qw( Address Register 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0);