diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-05 13:47:12 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-05 13:47:12 +0100 |
commit | 07b7563e0748b1aff6f4d28b0172095b2fdcdfcc (patch) | |
tree | a5e390cfad822d87e6874f4e719edda445a32585 /README | |
parent | 94e88e887cf2ee4c6b445924d26e134a90bcbd50 (diff) | |
download | SystDigit-Projet-07b7563e0748b1aff6f4d28b0172095b2fdcdfcc.tar.gz SystDigit-Projet-07b7563e0748b1aff6f4d28b0172095b2fdcdfcc.zip |
Added netlist simplification passes (not yet quite complete !)
Diffstat (limited to 'README')
-rw-r--r-- | README | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -6,6 +6,7 @@ Alex AUVOLAT (Info 2013) Contents of the repository : +---------------------------- sched/ A scheduler for netlists. @@ -36,3 +37,18 @@ minijazz/ Documentation about the project. + +CONVENTION FOR BINARY VALUES +---------------------------- + +/!\ This convention is contrary to the one used in the example file nadder.mj + (Therefore I have modified that file...) + +The bit array [a_0 a_1 a_2 ... a_n-1] represents the decimal number : + a_0 + 2*a_1 + 4*a_2 + ... + 2^(n-1)*a_n-1 + +When represented in binary, we write the bits in the order : + a_0 a_1 a_2 ... a_n-1 + +/!\ BINARY NUMBERS ARE WRITTEN REVERSE ! + |