summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-04 22:15:16 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-04 22:15:16 +0100
commit62705818bf8227a9a35fff6879306c1b861e9dfd (patch)
tree23aea96a3be9c5e442512eb0b3be8c43a5b89282 /README
parent9063ce38f51e652f7995e173ef9173ed10bb308c (diff)
downloadSystDigit-Projet-62705818bf8227a9a35fff6879306c1b861e9dfd.tar.gz
SystDigit-Projet-62705818bf8227a9a35fff6879306c1b861e9dfd.zip
Added README file
Diffstat (limited to 'README')
-rw-r--r--README38
1 files changed, 38 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..ff55a2c
--- /dev/null
+++ b/README
@@ -0,0 +1,38 @@
+
+Système Digital 2013-2014
+Cours J.Vuillemin, TD T.Bourke
+
+Alex AUVOLAT (Info 2013)
+
+
+Contents of the repository :
+
+sched/
+ A scheduler for netlists.
+ Input : a netlist.
+ Output : a netlist with topologically sorted operators
+ plus a dumbed-down version for input to the C circuit simulator
+ $ cd sched/
+ $ ocamlbuild main.byte
+
+camlsim/
+ A circuit simulator written in OCaml.
+ This program does NOT do the scheduling. The netlist must be passed through sched/ first.
+ $ cd camlsim/
+ $ ocamlbuild simulator.byte
+
+csim/
+ A circuit simulator written in C.
+ This program does NOT do the scheduling.
+ This program does NOT read a netlist, it reads a specifically formatted dumbed-down netlist, that
+ is output by the scheduler.
+ $ cd csim
+ $ make
+
+minijazz/
+ The MiniJazz compiler (not our doing).
+
+*.pdf
+ Documentation about the project.
+
+