blob: ff55a2ca19563ab0e40aae05954de0c48721e624 (
plain) (
blame)
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
|
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.
|