summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-05 13:47:12 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-05 13:47:12 +0100
commit07b7563e0748b1aff6f4d28b0172095b2fdcdfcc (patch)
treea5e390cfad822d87e6874f4e719edda445a32585 /README
parent94e88e887cf2ee4c6b445924d26e134a90bcbd50 (diff)
downloadSystDigit-Projet-07b7563e0748b1aff6f4d28b0172095b2fdcdfcc.tar.gz
SystDigit-Projet-07b7563e0748b1aff6f4d28b0172095b2fdcdfcc.zip
Added netlist simplification passes (not yet quite complete !)
Diffstat (limited to 'README')
-rw-r--r--README16
1 files changed, 16 insertions, 0 deletions
diff --git a/README b/README
index ff55a2c..40734fa 100644
--- a/README
+++ b/README
@@ -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 !
+