summaryrefslogtreecommitdiff
path: root/csim/sim.c
blob: 27827d571ab1d9834ac6ef2fef7ae756c00290f0 (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
/*
	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) {
}