Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perlmod / SunOS-sparc / Bit / Vector.pm
CommitLineData
86530b38
AT
1package Bit::Vector;
2
3use strict;
4use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION @CONFIG);
5
6require Exporter;
7require DynaLoader;
8
9@ISA = qw(Exporter DynaLoader);
10
11@EXPORT = qw();
12
13@EXPORT_OK = qw();
14
15$VERSION = '6.4';
16
17bootstrap Bit::Vector $VERSION;
18
191;
20
21__END__
22