diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-04 22:05:57 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-04 22:05:57 +0100 |
commit | cebd07b64f1f537c5ecf00ec21ff4b7c4032f0a3 (patch) | |
tree | 9d2048313fe3ad4c92865c8f0236bed24e64449b /csim/sim.c | |
parent | f253f98136def21b5e50c5922246e2ddfe315442 (diff) | |
download | SystDigit-Projet-cebd07b64f1f537c5ecf00ec21ff4b7c4032f0a3.tar.gz SystDigit-Projet-cebd07b64f1f537c5ecf00ec21ff4b7c4032f0a3.zip |
Added stub C simulator (defined dumb-down syntax for netlists).
Diffstat (limited to 'csim/sim.c')
-rw-r--r-- | csim/sim.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/csim/sim.c b/csim/sim.c new file mode 100644 index 0000000..27827d5 --- /dev/null +++ b/csim/sim.c @@ -0,0 +1,23 @@ +/* + Système Digital + 2013-2014 + Alex AUVOLAT + + sim.c The code that actually runs the machine +*/ + +#include "sim.h" + +t_machine *init_machine (t_program *p) { +} + +void read_inputs(t_machine *m, FILE *stream) { +} + +void machine_step(t_machine *m) { +} + +void write_outputs(t_machine *m, FILE *stream) { +} + + |