-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
38 lines (25 loc) · 1.17 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
RNumber
=======
RNumber is an arbitrary-length integer class. While the main
implementation is in C++, bindings exist for C, Perl, and Bigloo.
What differentiates RNumber from many other examples of
arbitrary-sized integers is that a given number object has a fixed
size. In other words, it is a bit vector with arithmetic operations.
This makes it suitable for modeling hardware resources such as
registers. However, the size may be modified during run-time, making
it more flexible than some other implementations, such as SystemC.
Platforms:
----------
Microsoft Visual Studio 2005
A solution file (rnumber.sln) and project file (rnumber.vcproj) are provided.
MinGW32
Basic support for MinGW is provided, but the regression framework
has not been fully ported. Simply run "./configure" and "make all check
install" to build and install the package.
Cygwin
RNumber works on Cygwin. Just run "./configure" and "make all check
install" to build, run the regression, and install the package.
Linux (32 and 64 bit)
This is the primary development platform for RNumber. Just run
"./configure" and "make all check install" to build, run the
regression, and install the package.